Link sharing at the speed of light
  • Svelte 51.7%
  • TypeScript 22.1%
  • CSS 10.6%
  • JavaScript 6.7%
  • HTML 6%
  • Other 2.9%
Find a file
2026-05-07 14:34:47 -03:00
src Add title tag 2026-05-07 14:27:39 -03:00
static Change logo 2026-05-07 14:26:49 -03:00
.gitignore move config file to $lib 2025-11-07 01:36:07 -03:00
.npmrc Initial Commit 2025-10-23 23:42:19 -03:00
default.nix can use nix-shell to initialize valkey server 2025-11-07 12:46:59 -03:00
jsconfig.json Initial Commit 2025-10-23 23:42:19 -03:00
package-lock.json Change logo 2026-05-07 14:26:49 -03:00
package.json Change logo 2026-05-07 14:26:49 -03:00
README.md Initial Commit 2025-10-23 23:42:19 -03:00
run.sh Add run helper script 2026-05-07 14:34:19 -03:00
svelte.config.js Add Node Adapter 2025-11-12 21:01:04 -03:00
vite.config.js Initial Commit 2025-10-23 23:42:19 -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 in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

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.