Source for the plutolab.org website. https://plutolab.org/
  • Svelte 84.6%
  • CSS 7.4%
  • TypeScript 5.6%
  • HTML 1.3%
  • JavaScript 1.1%
Find a file
2026-08-18 00:42:15 +05:30
.vscode Initial Commit 2026-03-27 02:40:39 +05:30
src CHANGE: improve image responsiveness on narrower displays 2026-08-18 00:42:15 +05:30
static CHANGE: about page has image, improved SEO and og tags and image 2026-08-18 00:06:03 +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 UPDATE: update docs for kosh v0.3 2026-08-08 02:34:38 +05:30
package.json UPDATE: update docs for kosh v0.3 2026-08-08 02:34:38 +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.