Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 557 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 557 Bytes

Tic-tac-toe

Tic-tac-toe board

Rules

  • The game is played on a board that's 3 squares by 3 squares
  • Players take turns putting their marks(X or O) in empty squares
  • The first player to get 3 of their marks in a row (horizontally, vertically or diagonally) is the winner
  • When all 9 squares are full, the game is over

Setup

Install dependencies

npm install

Scripts

Start application in live reload mode

npm run start:dev