Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/georginapuig/react-flats
https://github.com/georginapuig/react-flats
babel boilerplate flats javascript js lewagon react ssaunier webpack
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/georginapuig/react-flats
- Owner: georginapuig
- Created: 2022-09-07T03:58:38.000Z (over 2 years ago)
- Default Branch: mastercd
- Last Pushed: 2022-09-20T04:38:16.000Z (over 2 years ago)
- Last Synced: 2024-12-06T07:40:01.133Z (16 days ago)
- Topics: babel, boilerplate, flats, javascript, js, lewagon, react, ssaunier, webpack
- Language: JavaScript
- Homepage: https://github.com/lewagon/react-redux-challenges/blob/master/02-Redux/01-React-Advanced/README.md
- Size: 85.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-boilerplate
Simple react starter with the following config:
- React, ReactDOM
- Webpack 4
- Babel with es2015 and react presets
- Bootstrap (css only, loaded from a cdn in `index.html`)
- work with `.js` or `.jsx` files
- main `application.scss` stylesheet is imported in `index.js` as a module to enjoy hot reloading## Scripts
To start the local Webpack Dev Server (usually on port `8080`):
```bash
yarn start
```To lint all JavaScript files in the `src` folder:
```bash
yarn lint
```To build and deploy your app to `gh-pages` branch on the GitHub repo:
```bash
yarn deploy
```