Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.05 KB

README.md

File metadata and controls

30 lines (24 loc) · 1.05 KB

Topcoder React Starting Pack

Master build status GitHub Release Downloads Release Version

The easiest way to start a complex ReactJS project based on topcoder-react-utils.

Detailed documentation is available here COMING SOON

To install, test, and run in development mode:

$ npm install
$ npm test

# NODE_CONFIG_ENV can be "development" or "production". It has no influence on
# the code build and execution mode, it only sets the runtime configuration
# (Node Config).
$ NODE_CONFIG_ENV=development npm run dev

To install, test, and run in production mode:

$ npm install
$ npm test
$ npm run build

# Again, NODE_CONFIG_ENV can be "development" or "production" here.
$ NODE_CONFIG_ENV=production npm start