Rightclick httpserver.js
and click Run
Run node httpserver.js
Have npm run watchify
running while coding.
- bundles app.js and its dependencies to public/js/bundle.js
- starts a watch process that rebundles upon changing a file.
Run ./gitpush.sh
Run npm run lint
.
- shortcut for
eslint *.js modules/*.js components/*.js > lintoutput.log
Keep lintoutput.log open to see updated lint results.
You can also run 'eslint yourfile.js' to easily see lint results of yourfile.
Run npm run test
or jasmine
or node runtests.js
.
Run nodemon -x "node runtests.js"
Run nodemon -x "npm run lint"