No description
  • TypeScript 87.3%
  • JavaScript 6.5%
  • HTML 3.1%
  • Svelte 3.1%
Find a file
Dev 7f222dceb5
Add CONTRIBUTING.md stub (#11)
Adds a minimal `CONTRIBUTING.md` at the repo root with a `# Contributing` heading and a short welcome paragraph.

Closes #10
2026-04-18 10:18:04 +00:00
.vscode chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
src feat(api): align mock data with Koinos dashboard mockup 2026-04-15 22:33:24 +02:00
static chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
.gitignore chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
.npmrc chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
bun.lock chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
CHANGELOG.md docs: add CHANGELOG.md with initial v0.1.0 stub (#9) 2026-04-18 10:15:45 +00:00
CONTRIBUTING.md Add CONTRIBUTING.md stub (#11) 2026-04-18 10:18:04 +00:00
package.json chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
README.md chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
svelte.config.js chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
tsconfig.json chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02:00
vite.config.ts chore: initial SvelteKit TS scaffold 2026-04-15 22:29:45 +02: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
bun x sv@0.15.1 create --template minimal --types ts --install bun dummy-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.