diff --git a/example/express.js b/example/express.js index 8a655a9..734c43c 100644 --- a/example/express.js +++ b/example/express.js @@ -29,7 +29,5 @@ alexaApp.intent("nameIntent", { alexaApp.express(app, "/echo/"); -// launch /echo/test in your browser with a GET request - app.listen(PORT); -console.log("Listening on port " + PORT); +console.log("Listening on port " + PORT + ", try http://localhost:" + PORT + "/echo/test"); diff --git a/example/package.json b/example/package.json index 862c835..a44117d 100644 --- a/example/package.json +++ b/example/package.json @@ -9,5 +9,5 @@ "express": "^4.13.0" }, "author": "Matt Kruse (http://mattkruse.com/)", - "license": "ISC" + "license": "MIT" }