A minimal React app template that compiles in <=> 3 seconds.
Useful for scenarios where build time matters. If you want a fully-featured app boilerplate, use Create React App or React Boilerplate.
Clone and use it for your new project.
git clone [email protected]:tugboatcoding/react-babel-webpack-template.git my-react-app
Start your local webpack server:
npm run start
Build:
npm run build
Very rudimental measurement of the build time yields an average build time of ~3 seconds. (Sample size of 10.)
start=$SECONDS; npm run build; duration=$(( SECONDS - start )); echo $duration' seconds'