Source for the plutolab.org website. https://plutolab.org/
  • Svelte 81.3%
  • TypeScript 8.6%
  • CSS 6.4%
  • HTML 2%
  • JavaScript 1.7%
Find a file
2026-06-20 10:55:33 +05:30
.vscode Initial Commit 2026-03-27 02:40:39 +05:30
src UPDATE: Kosh Release v0.2.3 2026-06-20 10:44:30 +05:30
static Static Adapter and View Transition fixes 2026-03-27 13:05:54 +05:30
.gitignore Initial Commit 2026-03-27 02:40:39 +05:30
.npmrc Initial Commit 2026-03-27 02:40:39 +05:30
bun.lock CHORE: update packages 2026-06-20 10:55:33 +05:30
package.json CHORE: update packages 2026-06-20 10:55:33 +05:30
README.md Initial Commit 2026-03-27 02:40:39 +05:30
svelte.config.js PATCH: Prender options updated 2026-03-27 13:22:03 +05:30
tsconfig.json SEO changes, clean up 2026-03-27 10:08:01 +05:30
vite.config.ts Initial Commit 2026-03-27 02:40:39 +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
bun x sv@0.12.5 create --template minimal --types ts --install bun plutolab-v2

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.