#Simple ReactJS NodeJS boilerplate App
This is a basic isomorphic boilerplate app, built with react, node/express, ES6, webpack etc.
npm i
- install dependencies
npm run build:watch:server
- runs babel to transpile the server from es6 to es5 (watch mode)npm run build:watch:client
- runs webpack to build bundle (watch mode)npm run start:dev
- in parallel shells it callsbuild:watch:client
build:watch:server
and then runs the app in watch mode, using nodemon
npm run build:server
- runs babel to transpile the server from es6 to es5npm run build:client
- runs webpack to build bundlenpm run build
- builds both client and servernpm run start
- in parallel shells it callsbuild:prod
and then runs the appnpm start
- same asnpm run start