• Svelte 77.1%
  • TypeScript 9.9%
  • JavaScript 7.4%
  • CSS 2.7%
  • Shell 1.8%
  • Other 1.1%
Find a file
latenightdef 087c32ac57
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update .woodpecker.yml
2026-05-30 16:16:48 +00:00
src Update src/routes/+page.svelte 2026-04-14 20:18:07 +00:00
static initial 2026-01-28 07:18:48 +07:00
.gitignore update git ignore 2026-02-01 16:07:28 +00:00
.woodpecker.yml Update .woodpecker.yml 2026-05-30 16:16:48 +00:00
build.sh building script 2026-01-28 23:47:38 +07:00
eslint.config.js initial 2026-01-28 07:18:48 +07:00
package.json static build 2026-01-28 07:21:54 +07:00
README.md initial 2026-01-28 07:18:48 +07:00
svelte.config.js static build 2026-01-28 07:21:54 +07:00
tsconfig.json initial 2026-01-28 07:18:48 +07:00
vite.config.ts initial 2026-01-28 07:18:48 +07: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
npx sv create --template minimal --types ts --add prettier eslint mdsvex --install npm ./

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.