Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lucasbento/react-tic-tac-toe
- Owner: lucasbento
- Created: 2017-01-21T11:47:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-23T15:09:09.000Z (about 8 years ago)
- Last Synced: 2024-10-18T09:19:27.795Z (4 months ago)
- Topics: javascript, react, redux, tic-tac-toe, webpack
- Language: JavaScript
- Homepage: https://react-tic-tac-toe.now.sh/
- Size: 1.81 MB
- Stars: 40
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!