Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trungdq88/plain-react
My favorite boilerplate to create static web app with React.
https://github.com/trungdq88/plain-react
Last synced: about 1 month ago
JSON representation
My favorite boilerplate to create static web app with React.
- Host: GitHub
- URL: https://github.com/trungdq88/plain-react
- Owner: trungdq88
- Created: 2015-11-12T15:00:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-23T04:48:43.000Z (over 8 years ago)
- Last Synced: 2024-08-29T18:36:21.766Z (4 months ago)
- Language: JavaScript
- Size: 513 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build status](https://travis-ci.org/trungdq88/plain-react.svg?branch=master)](https://travis-ci.org/trungdq88/plain-react)
[![Dependencies](https://img.shields.io/david/trungdq88/plain-react.svg)]()
[![Dev dependencies](https://img.shields.io/david/dev/trungdq88/plain-react.svg)]()
[![Coverage Status](https://coveralls.io/repos/trungdq88/plain-react/badge.svg?branch=master&service=github)](https://coveralls.io/github/trungdq88/plain-react?branch=master)# About
My favorite boilerplate to create static web app with React.# Initial dev setup
Make sure you have NodeJS v6 or above.```bash
npm install
npm start
````http://localhost:8123` should now be live with Hot Module Replacement.
# Production build
```bash
npm install
npm run build
```Production code placed at `build`
# Test
```bash
npm test
```Coverage report placed in `./coverage/` directory
# Other commands
- `npm lint`: linting.