Awesome
ES6 Boilerplate
This is the base project I use when I want to quickly start a project/POC.
###NPM scripts
npm run build
-> build the appnpm run lint
-> lint your codenpm start
-> fire up devserver in port 8080npm t / npm test
-> run tests using AVAnpm run cover
-> code coveragecover:check
-> check coverage (set to a 90% minimum)npm run watch:test
-> watch testsnpm run watch:cover
-> watch coveragenpm run depoly
-> Deploy your project to gh-pages
Note about Installation/Updating deps
I'm using YARN. https://yarnpkg.com
So basically just run yarn
instead of npm install
and run yarn add your-package
instead of npm install your-package
For more info, please read Yarn's docs.
Sidenote
This could be too opinionated for your needs. ¯\_(ツ)_/¯