No description
  • CSS 35.1%
  • TypeScript 19.7%
  • Svelte 16.7%
  • Rust 10.3%
  • Nix 10.1%
  • Other 8.1%
Find a file
2026-04-22 10:54:01 +12:00
.vscode svelte: init 2026-04-05 14:38:56 +12:00
backend logs: remove useless logs 2026-04-11 20:20:13 +12:00
nix front: fix nix build 2026-04-22 10:50:28 +12:00
src articles: ajouter recherche 2026-04-22 10:47:33 +12:00
static grass: implement 2026-04-11 13:26:21 +12:00
.gitignore target: remove 2026-04-11 18:32:08 +12:00
.npmrc svelte: init 2026-04-05 14:38:56 +12:00
.prettierignore svelte: init 2026-04-05 14:38:56 +12:00
.prettierrc svelte: init 2026-04-05 14:38:56 +12:00
eslint.config.js svelte: init 2026-04-05 14:38:56 +12:00
flake.lock flake: update 2026-04-22 10:54:01 +12:00
flake.nix nix module: add and pray 2026-04-11 19:33:20 +12:00
package-lock.json articles: ajouter recherche 2026-04-22 10:47:33 +12:00
package.json articles: ajouter recherche 2026-04-22 10:47:33 +12:00
README.md svelte: init 2026-04-05 14:38:56 +12:00
svelte.config.js grass: improve 2026-04-08 14:23:01 +12:00
tsconfig.json svelte: init 2026-04-05 14:38:56 +12:00
vite.config.ts svelte: init 2026-04-05 14:38:56 +12: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@0.14.0 create --template minimal --types ts --add eslint 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:

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.