A template meant to be used to quick start new web applications.
Uses a number of open source projects:
Requires Node.js to run.
Install the dependencies and start the dev-server.
$ cd new_app_template
$ npm install
$ npm start
Alternatively, you can also start the dev-server in production mode.
$ npm run start-prod
To simply build the application(depending on the mode you want).
$ npm run build
$ npm run build-prod
You can also check and analyze your bundle size in production mode.
$ npm run analyze-bundle