https://github.com/dcts/react-giphy
Learning react with giphy project (tutorial by lewagon)
https://github.com/dcts/react-giphy
Last synced: about 2 months ago
JSON representation
Learning react with giphy project (tutorial by lewagon)
- Host: GitHub
- URL: https://github.com/dcts/react-giphy
- Owner: dcts
- Created: 2021-07-17T04:34:39.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-19T00:45:30.000Z (almost 5 years ago)
- Last Synced: 2025-10-13T23:23:58.553Z (8 months ago)
- Language: JavaScript
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- 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
```