https://github.com/bernardini687/react-flats
https://github.com/bernardini687/react-flats
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bernardini687/react-flats
- Owner: bernardini687
- Created: 2019-05-09T06:59:58.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T22:33:55.000Z (over 2 years ago)
- Last Synced: 2025-01-10T00:26:28.652Z (4 months ago)
- Language: JavaScript
- Size: 1.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
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
```