https://github.com/hdoro/tictactoe-rc
https://github.com/hdoro/tictactoe-rc
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hdoro/tictactoe-rc
- Owner: hdoro
- Created: 2022-08-26T16:46:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-29T18:06:45.000Z (almost 3 years ago)
- Last Synced: 2025-01-24T01:09:56.344Z (5 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.