Getting started with Node.js and Express on Windows
Quite easy, just head over to NodeJs.Org and download and install it. The next step is to install Express. Fire up Git-bash or a command prompt and use the Node package manager (npm) to install Express globally: npm install -g express Now, lets use Express to setup a standard layout for us to sta…
Daniel Wertheim