Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lucasbento/react-tic-tac-toe

Tic Tac Toe in React
https://github.com/lucasbento/react-tic-tac-toe

javascript react redux tic-tac-toe webpack

Last synced: 3 months ago
JSON representation

Tic Tac Toe in React

Awesome Lists containing this project

README

        

React Tic Tac Toe






## Installing

- With yarn:
```sh
yarn install
```

- With npm:
```sh
npm install
```

## Running

### Development

Simply run:
```sh
npm run watch
```

And open [http://localhost:7000/](http://localhost:7000/) on your favorite browser.

### Production

- Build the app, the files will be available in `./dist`:
```sh
npm run build
```

- Run with amazing [http-server](https://github.com/indexzero/http-server):
```sh
npm start
```

- And open [http://localhost:7000/](http://localhost:7000/) also on your favorite browser. 😉

## Lint

Simply type `npm run lint` on your terminal to lint using [ESLint](http://eslint.org/) following [Airbnb's JavaScript Styleguide](https://github.com/airbnb/javascript).

## Testing

This project is using [Jest](https://github.com/facebook/jest) for testing, simply type `npm test` on the root folder to see the magic!