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

https://github.com/severo/4444

game
https://github.com/severo/4444

Last synced: 23 days ago
JSON representation

game

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)