https://github.com/severo/4444
game
https://github.com/severo/4444
Last synced: 23 days ago
JSON representation
game
- Host: GitHub
- URL: https://github.com/severo/4444
- Owner: severo
- Created: 2026-05-05T12:51:43.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-05T17:03:37.000Z (about 1 month ago)
- Last Synced: 2026-05-05T18:29:21.023Z (about 1 month ago)
- Language: Svelte
- Size: 44.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sv
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```sh
# create a new project
npx sv create my-app
```
To recreate this project with the same configuration:
```sh
# recreate this project
npx sv@0.15.2 create --template minimal --types ts --add eslint vitest="usages:unit,component" tailwindcss="plugins:none" prettier --install npm .
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```sh
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```sh
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
## TODO
- [ ] create the main game page, client-side only
- [ ] add the pages and effects
- [ ] add a server component to manage game state (don't give the solution in the code, same problem every day for everyone)