Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.37 KB

README.md

File metadata and controls

55 lines (38 loc) · 1.37 KB

React Tic Tac Toe

Installing

  • With yarn:
yarn install
  • With npm:
npm install

Running

Development

Simply run:

npm run watch

And open http://localhost:7000/ on your favorite browser.

Production

  • Build the app, the files will be available in ./dist:
npm run build
npm start

Lint

Simply type npm run lint on your terminal to lint using ESLint following Airbnb's JavaScript Styleguide.

Testing

This project is using Jest for testing, simply type npm test on the root folder to see the magic!