A mostly unopinionated boiler plate for React, express projects. It provides the setup for compiling, linting and testing your code but doesn't make any further assumptions on how your project should be structured.
##Features
- Express.js as the web framework.
- ES2017+ support with Babel.
- Linting with ESLint.
- bundling with Webpack 4
# Clone the project
git clone https://github.com/sccofield/javascript-boilerplate
cd javascript-boilerplate
# Make it your own
rm -rf .git && git init && npm init
# Install dependencies
npm install
npm start
This will launch the project and you can view it on http://localhost:8000/ .
Linting is set up using ESLint. It extends airbnb's rules.
MIT License. See the LICENSE file.