npm start
Starts the regular create-react-app on localhost:3000/
npm run build
Builds production build for react app. I use serve to run this production build.
npm run build:cordova
builds the app by appending tags to index.html which will be needed for cordova builds
cordova platform add browser
cordova browser build
Note: This build needs www directory which is created from
npm run build:cordova
cordova run browser
Runs the browser build in browser at localhost:8000
Commands will be similar to as browser platform. cordova platforms guide.