Dynamic Web Development @ ITP, Spring 2014
Instructors:
This app was built with Express.js, and relies on the following dependencies:
Everything this app needs should be installable via npm:
npm install
To start the app with npm/Nodemon (enabling fancy auto-reload action and all that), just run this:
npm start
If you'd rather just run the server, you can
node web.js
To start the app with Nodemon by hand, do this instead:
./node_modules/.bin/nodemon web.js
You should then be up and running! As with Node itself, you can quit the process with ctrl-c
.