react-redux-starter-thibault
Version:
Starter Kit for React + Redux application with Webpack
46 lines (35 loc) • 758 B
Markdown
# 2048 - Implemented with React and Redux
* [Setup](#setup)
* [Usage](#usage)
* [start](#start)
* [debug](#debug)
* [lint](#lint)
* [build](#build)
If you want to play with it, you can check the [DEMO](http://dvalchanov.github.io/react-redux-2048/)
## Setup
```
git clone git@github.com:dvalchanov/react-redux-2048.git
cd react-redux-2048
npm install
```
## Usage
### `start`
Start the development server with hot reload:
```
make start
```
### `debug`
Start the development server in DEBUG mode, with the React dev tools enabled:
```
make debug
```
### `lint`
Lint the code to check for any errors:
```
make lint
```
### `build`
Build a production ready version of the code:
```
make build
```