From cd96f781058546cad27e8fc178248db677cb1e0a Mon Sep 17 00:00:00 2001 From: Dorian Weidler Date: Tue, 26 Mar 2019 15:10:54 +0100 Subject: [PATCH] Added NodeJS Express instructions --- nodejs-express/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nodejs-express/README.md diff --git a/nodejs-express/README.md b/nodejs-express/README.md new file mode 100644 index 0000000..0c906ab --- /dev/null +++ b/nodejs-express/README.md @@ -0,0 +1,13 @@ +# "Hello World" in NodeJS using Express + +It's using the Express framework, one of the most frequently used, lightweight web frameworks for NodeJS. + +## Prerequisites +* [NodeJS](https://nodejs.org/en/download/) +* npm (if it's not bundled with NodeJS already) + +## How to install/run +Simply run the following commands. `npm install` will locally install the dependencies. `node index.js` will start a webserver with the specified behaviour. + + npm install + node index.js \ No newline at end of file