Including, but not limited to, the following:
webpack
(d'oh)webpack-dev-server
for development & hot module reloadingbabel
for ES6 transpiling, including stage 0 supporteslint
for code hygienemocha
,chai
&sinon
for testingistanbul
for code coverage
Command | Description |
---|---|
npm start |
Start a dev server with HMR enabled. |
npm run server |
Start a dev server with HMR enabled. |
npm run build |
Build the production version of the app. |
npm run build:prod |
Build the production version of the app. |
npm run build:dev |
Build the developement version of the app. |
npm run test |
Run the tests. |
npm run test:watch |
Run the tests & watch for changes. |
npm run test:coverage |
Run the test coverage analysis. |
npm run lint |
Lint the code. |