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

https://github.com/prabirshrestha/reactjs-boilerplate

ReactJS boilerplate code with WebPack
https://github.com/prabirshrestha/reactjs-boilerplate

Last synced: 2 months ago
JSON representation

ReactJS boilerplate code with WebPack

Awesome Lists containing this project

README

        

# ReactJS Boilerplate with WebPack

## Getting Started

```bash
npm install
npm start
```

Open http://localhost:3000 to view the site.

If you would like to build the output and not watch the file. Run `npm run-script build` instead.

### dev builds

```bash
npm install
npm run-script build
```

### prod builds

```bash
npm install
export NODE_ENV=production
npm run-script build-prod
```

For windows use `SET NODE_ENV=production` instead.

## Run Test

```bash
npm install
npm test
```

### Run test in CI

```bash
npm install
npm test:ci
```