An open API service indexing awesome lists of open source software.

https://github.com/janstuemmel/react-boilerplate

simple react boilerplate with jest
https://github.com/janstuemmel/react-boilerplate

enzyme jest react react-router

Last synced: 3 months ago
JSON representation

simple react boilerplate with jest

Awesome Lists containing this project

README

          

# React boilerplate

[![Build Status](https://travis-ci.org/janstuemmel/react-boilerplate.svg?branch=master)](https://travis-ci.org/janstuemmel/react-boilerplate)

Another react boilerplate with following modules:

* `bootstrap`
* `react-bootstrap`
* `react-router-dom`

Testing with `jest` and `enzyme`.

## Install

```sh
npm install # install dependencies

npm test # runs tests

npm test -- --watch # runs tests on file change
```

## Build

```sh
gulp # watches file change

gulp build # builds distribution files

npm start # starts nodemon server
```