No description
  • Svelte 53.2%
  • JavaScript 27.9%
  • TypeScript 13.8%
  • HTML 4.5%
  • CSS 0.3%
  • Other 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-05-11 13:58:59 +01:00
.vscode initial commit - template 2026-05-09 19:03:37 +01:00
src feature: added lobby creation api requests with proxy through server 2026-05-11 13:58:59 +01:00
static initial commit - template 2026-05-09 19:03:37 +01:00
.gitignore initial commit - template 2026-05-09 19:03:37 +01:00
.npmrc initial commit - template 2026-05-09 19:03:37 +01:00
.prettierignore initial commit - template 2026-05-09 19:03:37 +01:00
.prettierrc initial commit - template 2026-05-09 19:03:37 +01:00
bun.lock initial commit - template 2026-05-09 19:03:37 +01:00
eslint.config.js initial commit - template 2026-05-09 19:03:37 +01:00
justfile feature: added justfile 2026-05-11 10:19:38 +01:00
package.json initial commit - template 2026-05-09 19:03:37 +01:00
README.md initial commit - template 2026-05-09 19:03:37 +01:00
svelte.config.js initial commit - template 2026-05-09 19:03:37 +01:00
tsconfig.json initial commit - template 2026-05-09 19:03:37 +01:00
vite.config.ts initial commit - template 2026-05-09 19:03:37 +01:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
bun x [email protected] create --template minimal --types ts --add prettier eslint tailwindcss="plugins:none" --install bun cluedo-frontend

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

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:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.