An infinite board online multiplayer tic tac toe game directly in your terminal.
(Coming soon)
go install github.com/sokmontrey/TicTacToeTuiOnline/cmd/client@latestRun:
clientgit clone https://github.com/sokmontrey/TicTacToeTuiOnline.git
cd TicTacToeTuiOnlineBuild (go 1.23.3 required):
cd cmd/client
go build -o client_gameRun:
./client_gameOr Run directly:
go run cmd/client/main.goBy default, the client will connect to the server at tictactoetuionline.onrender.com.
Build (go 1.23.3 required):
cd cmd/server
go build -o serverRun:
./serverOr Run directly:
go run cmd/server/main.goEdit the serverAddr constant in cmd/client/main.go without the protocol prefix.
Example:
//...
const (
serverAddr = "localhost:8080"
)
//...