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

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

A SIMPLE-er-er react webpack boilerplate
https://github.com/patomation/react-boilerplate

conventional-commits docker husky react typescript webpack

Last synced: about 1 year ago
JSON representation

A SIMPLE-er-er react webpack boilerplate

Awesome Lists containing this project

README

          

# React Boilerplate

keep it simple stupid

## USAGE:

Install the deps the first time

```sh
npm i
```

Run the Dev Server

```sh
npm start
```

## Build:

```sh
npm run build
```

## Testing

```sh
npm test
```

## Docker

```sh
docker build -t react-boilerplate-image .
docker run -dit --rm --name react-boilerplate-app -p 8080:80 react-boilerplate-image
```