0.1.3 • Published 12 years ago
periodic.app.web-app v0.1.3
Periodic Web App
Boilerplate web app
Prerequisites
You need to make sure you have nodemon and grunt installed globally first
Installing nodemon
$ npm install nodemon -g
$ npm install grunt-cli -gInstallation
$ npm install periodic.app.web-appStarting App
Hop into the app directory (the app gets copied via a grunt task), install dependencies for the app, create a log directory, fire up the app.
$ cd periodic/app.web-app
$ npm install
$ mkdir logs
$ npm run webappDeveloping
You need to make sure you have browserify installed globally first
Installing browserify
$ npm install browserify -gStarting app
$ cd periodic/app.web-app
$ npm run appdevStart Developing app & JSLinting
watch for file changes for automated linting and browserify compliation, It's wise to run JSLinting while developing to catch errors on the fly
$ cd periodic/app.web-app
$ npm run watch