No description
  • Svelte 59.2%
  • TypeScript 35.6%
  • CSS 3.2%
  • HTML 1.2%
  • JavaScript 0.4%
  • Other 0.4%
Find a file
2026-05-05 13:07:45 +05:30
docs docs: realign to brand tone 2026-04-18 22:12:16 +05:30
scripts fix(docs): generate heading ids so anchor links resolve 2026-05-05 13:07:45 +05:30
src fix(docs): constrain rendered images to content column 2026-04-22 20:58:17 +05:30
static chore: adopt two-tone logo and drop og image 2026-04-18 22:12:16 +05:30
.gitignore feat: Initial commit 2026-04-18 13:38:47 +05:30
.npmrc feat: Initial commit 2026-04-18 13:38:47 +05:30
.prettierignore refactor: Split code properly 2026-04-18 14:09:49 +05:30
.prettierrc refactor: Split code properly 2026-04-18 14:09:49 +05:30
bun.lock fix(docs): generate heading ids so anchor links resolve 2026-05-05 13:07:45 +05:30
Dockerfile refactor: Split code properly 2026-04-18 14:09:49 +05:30
nginx.conf refactor: Split code properly 2026-04-18 14:09:49 +05:30
package.json fix(docs): generate heading ids so anchor links resolve 2026-05-05 13:07:45 +05:30
README.md feat: Initial commit 2026-04-18 13:38:47 +05:30
svelte.config.js fix(web): use 404.html fallback so unknown routes return a real 404 2026-04-19 13:39:10 +05:30
tsconfig.json feat: Initial commit 2026-04-18 13:38:47 +05:30
vite.config.ts refactor: Split code properly 2026-04-18 14:09:49 +05:30

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
npx sv@0.15.1 create --template minimal --types ts --no-install .

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.