Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michalzalecki/react-boilerplate-lite
Minimal boilerplate for React apps
https://github.com/michalzalecki/react-boilerplate-lite
Last synced: 3 months ago
JSON representation
Minimal boilerplate for React apps
- Host: GitHub
- URL: https://github.com/michalzalecki/react-boilerplate-lite
- Owner: MichalZalecki
- Created: 2015-08-21T19:56:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T17:15:28.000Z (about 2 years ago)
- Last Synced: 2024-10-25T12:38:05.792Z (3 months ago)
- Language: JavaScript
- Homepage: https://michalzalecki.com/the-best-react-boilerplate/
- Size: 3.46 MB
- Stars: 58
- Watchers: 5
- Forks: 15
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Boilerplate Lite
![CI](https://github.com/MichalZalecki/react-boilerplate-lite/workflows/CI/badge.svg)
💙 Using **TypeScript**? Checkout the [typescript](https://github.com/MichalZalecki/react-boilerplate-lite/tree/typescript) branch! 💙
**Read more:** [What's the best React boilderplate and why you cannot clone it from GitHub?](https://michalzalecki.com/the-best-react-boilerplate/)
React Boilerlate Lite is a minimal boilerplate for modern React apps build on **webpack** with **hot reloading** support.
## Deploy
### Heroku
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
### Docker
docker build -t react-boilerlate-lite .
docker run --rm -it -p 8080:8080 react-boilerlate-lite### Docker Compose
docker-compose up
## Installation
```
git clone --depth 1 https://github.com/MichalZalecki/react-boilerplate-lite my-project
cd my-project
cp .env-example .env
yarn install
```## Usage
```
yarn start # start production server
yarn dev # start development server
yarn build # production build
yarn lint # run ESLint
yarn format # run prettier
yarn test # run Jest
```