Node.js basic trials on Windows
Download node.js trough this link: https://nodejs.org/en/
Create a node script under C:\users\Your_Computer_name\
name your script: Your_Script_Name.js
before starting the server, you should run "npm install" on cmd to install all the modules defined in your packege.json.
Open cmd, and start your server like: node Your_Script_Name.js
In your script listen the port 8080.
Open your browser and type; localhost/8080.
Ta daa.