Skip to content

Latest commit

 

History

History
42 lines (22 loc) · 904 Bytes

File metadata and controls

42 lines (22 loc) · 904 Bytes

DWD - Spring 2014

Dynamic Web Development @ ITP, Spring 2014

Instructors:

App notes

This app was built with Express.js, and relies on the following dependencies:

Installing dependencies

Everything this app needs should be installable via npm:

npm install

Running the application

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.