#install express globally and the express generator which will scafold out some boiler plate code npm install express express-generator -g #setup an express handlebars site express expresssite -hbs #now browse to new dir, install node modules and start the site cd expresssite && npm install && npm start