Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blueberryapps/react-bluekit-web
Web for react-bluekit
https://github.com/blueberryapps/react-bluekit-web
Last synced: about 7 hours ago
JSON representation
Web for react-bluekit
- Host: GitHub
- URL: https://github.com/blueberryapps/react-bluekit-web
- Owner: blueberryapps
- License: mit
- Created: 2016-03-21T10:03:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T15:40:01.000Z (almost 2 years ago)
- Last Synced: 2024-04-09T21:49:14.035Z (7 months ago)
- Language: JavaScript
- Homepage: https://react-bluekit.herokuapp.com/
- Size: 714 KB
- Stars: 1
- Watchers: 25
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# react-webpack-boilerplate [![Build Status][travis-badge]][travis] [![Coverage Status][coveralls-badge]][coveralls]
> Simple production-ready boilerplate for [React](http://facebook.github.io/react/) and [Webpack](http://webpack.github.io/) (SASS and React hot reloading) and tests with Jest.Note: if you want React server-side rendering support, take a look at my personal site repo based on this: [github.com/srn/srn.io](https://github.com/srn/srn.io)
## Install
Clone repository and run:
```sh
$ npm install
```Alternatively, you can deploy your own copy with one click using this button:
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/srn/react-webpack-boilerplate)
## Requirements
node 5+
## Development
```sh
$ npm start
```Go to [http://localhost:3001](http://localhost:3001) and see the magic happen.
## Production
If you want to run the project in production, set the `NODE_ENV` environment variable to `production`.
```sh
$ NODE_ENV=production npm start
```Also build the production bundle:
```sh
$ npm run dist
```## Tests
```sh
$ npm test
```Only run specific tests
```sh
$ npm test -- NotFoundComponent
```Coverage
```sh
$ npm test -- --coverage
```## License
MIT © [Søren Brokær](http://srn.io)
[travis]: https://travis-ci.org/srn/react-webpack-boilerplate
[travis-badge]: http://img.shields.io/travis/srn/react-webpack-boilerplate.svg?style=flat-square
[coveralls]: https://coveralls.io/r/srn/react-webpack-boilerplate
[coveralls-badge]: http://img.shields.io/coveralls/srn/react-webpack-boilerplate.svg?style=flat-square