A boilerplate to jump start your React project with webpack developer server.
This setup environment includes:
- Webpack: A module bundler.
- Webpack Dev Server: Uses Webpack with a development server that provides live reloading.
- Babel: A Javascript compiler.
- To transform JSX to JS.
- To transform ES6 to ES5.
- ES6: The sixth major release of the ECMAScript language specification.
- React: For building user interfaces.
These instructions will get you a copy of the project up and running on your local machine.
You only need Node.js installed.
Git clone this repository then change your current directory.
$ git clone https://github.com/Waleed-BS/react-setup-environment
$ cd react-setup-environment
Install dependencies.
$ npm install
Run your webpack developer server.
$ npm start
The contents of this repository are covered under the MIT License.