My first Express application for learning purposes.
NOTE: Node.js is needed!
Setting up the project requires some steps:
-
Clone this repo
-
Install all dependencies
npm install
Go to root folder of the project and execute the command
node server.js
If everything is ok, you can see in the terminal the message
Server running at http://localhost:3000/
This trivial project simply checks in the URL the presence of 'name' parameter.
If 'name' is setted, the result is
Hello 'name'
otherwise the result is
What is your name?