React boilerplate with ES2015, Express.js, and Webpack
- React (v16)
- Express.js (v4) as production and development server
- Webpack 4 (production and development configurations)
- SCSS support (+ sanitize.css included)
- ES2015+
- preconfigured eslint and Prettier code formatter
- React Hot Loader
- Linux/MacOS/Windows
npm install -g nodemon
git clone https://github.com/wdi-sg/react-express-webpack.git
cd react-express-webpack
npm install
# remove boilerplate git references
rm ./.git
# run development mode
npm run dev
# run production mode
npm run build
npm start
# run prettier
npm run prettier
# run lint
npm run lint
# run on a different port
HTTP_PORT=3001 npm run dev
Some operating systems do not copy the server files to the build directory.
See the documentation here: https://github.com/calvinmetcalf/copyfiles/blob/master/readme.md
MIT License. Free use and change.