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

https://github.com/rhaeguard/multiplayer-tictactoe

Tictactoe that can be played by two people in different machines
https://github.com/rhaeguard/multiplayer-tictactoe

multiplayer-game react tictactoe websocket

Last synced: 5 days ago
JSON representation

Tictactoe that can be played by two people in different machines

Awesome Lists containing this project

README

          

# Multiplayer TicTacToe

This is how the game play is, after matching up with a user.

![](./assets/gameplay.gif)

# Running

Both of the applications can be started using:

```bash
# go to backend/ and run
cd backend
npm start

# go to ui/ and run
cd ../ui
npm start
```

# Matching

Matching technique is utter garbage at the moment, basically you open the UI, and the backend checks if there's already someone who is already waiting for an opponent. Aaaaand you get matched. Voila! And yes, it can go wrong is so many ways it's crazy.