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

https://github.com/hdoro/tictactoe-rc


https://github.com/hdoro/tictactoe-rc

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Minimal Tic Tac Toe game

UI is built with [SvelteJS](https://svelte.dev/) and tests are run with [Vitest](https://vitest.dev/).

```sh
# Install dependencies
npm i

# Develop UI
npm run dev

# Test game state logic
npm run test
```

Most of these files are boilerplate. Focus on `App.svelte` and `gameState.js`, that's the code I wrote.