# cli-react-app
Command line interface for rapid React.js development.

### Install
```sh
npm i -g cli-react-app
```

### Usage
```sh
react create <app-name> [-p <preset>]

# preset: babel (default), typescript

cd app-name && npm i

npm run dev   # development
npm run build # production
npm test      # starts the test runner
```
