Prototype one page web app, with RESTful API server, that also renders HTML at the client.
npm install # looks to package.json ...
export HOST= # for example localhost:8888
export PORT= # for example 8888
export FACEBOOK_APP_ID= # app requires Facebook connect
export FACEBOOK_APP_SECRET= # app requires Facebook connect
export DB_DOMAIN= # mongodb domain/ip
export DB_PORT= # mongodb port
export DB_USERNAME= # mongodb username
export DB_PASSWORD= # mongodb password
node server.js --config local # serving different /config/{config}.json file as /js/config.json ...
grunt -config local # packaging /config/{config}.json file as /js/config.json ...
node server.js --dist true