No description
  • Svelte 69%
  • TypeScript 14.7%
  • CSS 11.5%
  • JavaScript 4%
  • HTML 0.8%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-03 07:29:36 +03:00
.vscode Initial commit 2026-08-03 07:29:36 +03:00
src table 2026-08-03 07:29:36 +03:00
static Initial commit 2026-08-03 07:29:36 +03:00
.editorconfig Initial commit 2026-08-03 07:29:36 +03:00
.env.example Initial commit 2026-08-03 07:29:36 +03:00
.gitignore Initial commit 2026-08-03 07:29:36 +03:00
.npmrc Initial commit 2026-08-03 07:29:36 +03:00
.prettierignore Initial commit 2026-08-03 07:29:36 +03:00
components.json table 2026-08-03 07:29:36 +03:00
drizzle.config.ts Initial commit 2026-08-03 07:29:36 +03:00
eslint.config.js Initial commit 2026-08-03 07:29:36 +03:00
package.json table 2026-08-03 07:29:36 +03:00
pnpm-lock.yaml table 2026-08-03 07:29:36 +03:00
pnpm-workspace.yaml Initial commit 2026-08-03 07:29:36 +03:00
prettier.config.js Initial commit 2026-08-03 07:29:36 +03:00
README.md Initial commit 2026-08-03 07:29:36 +03:00
tsconfig.json Initial commit 2026-08-03 07:29:36 +03:00
vite.config.ts Initial commit 2026-08-03 07:29:36 +03: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
pnpm dlx sv@0.17.0 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:none" sveltekit-adapter="adapter:node" drizzle="database:sqlite+sqlite:better-sqlite3" --install pnpm rsa

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.