- Node
- NPM
- Git
git clone https://github.com/K-Eo/BoilerplateReactHotReload.git
cd BoilerplateReactHotReload
npm install
Wait to NPM install, then run the next command:
npm start
Open you browser and go to http://localhost:3000. Now you can see your app running.
Follow the next section to see more options to build your app.
Compile for production:
npm start
Compile for development preview:
npm run preview
Compile for development with Hot Reload:
npm run dev
Run tests:
npm test
Install any css Framework via NPM and then import it in the main.jsx file:
import 'style!css!<framework-name>/main.css';
MIT