React-SASS-AirBnB is a project that provides you a boilerplate tool for React following the Airbnb's Javascript (ES6) Style Guide, and including some features that allows you to use SASS as your style tool in the app.
- Simple
/dist/index.htmlloadingbundle.js. - Starter
/src/index.jsfor React. - Starter
/src/_global.scssfor style your app. - All code following Airbnb's Javascript (ES6) style guide.
- Webpack dev server with automatic reloading. Just need to run
$ npm start. - Deployment build with
$ npm run build -p - Pre-commit script to prevent commit files that could break your app in production
Just run the following commands in your terminal to start coding
$ git clone https://github.com/yoniihdc/react-sass-airbnb
$ cd react-sass-airbnb
$ npm install
$ npm startThe last command automatically opens your browser and you can see your first react app running. In case you don't, you can manually go to http://localhost:3000.
To create a build for production you need to build your current project with the following command:
$ npm run build -p
Then just copy all files inside /dist folder and put all of them in your server.
This project is an initiative to make easier the way you create a react app, feel free to propose new things and changes that help us with this task, you can read our CONTRIBUTE.md for more information.