Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 915 Bytes

readme.md

File metadata and controls

42 lines (31 loc) · 915 Bytes

new_app_template

A template meant to be used to quick start new web applications.

Tech stack

Uses a number of open source projects:

Installation

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