This is a simple Tic Tac Toe SPA implemented using Svelte, based on the project template found at https://github.com/sveltejs/template.
Play at https://aioooi.github.io/tictactoe-svelte/ :blush:
Assuming rather recent versions Node.js, npm and the likes are installed:
git clone https://github.com/aioooi/tictactoe-svelte
cd tictactoe-svelte
npm install
Clone the Tic Tac Toe engine from https://github.com/aioooi/tictactoe-js using degit:
mkdir lib
npx degit aioooi/tictactoe-js lib/tictactoe
Like the template, it uses Rollup. To run a development server with live reload at localhost:5000:
npm run dev
To create an optimised version of the app:
npm run build
For further information, please refer to the README of the project template.