No description
  • Svelte 90.8%
  • TypeScript 5.7%
  • JavaScript 1.7%
  • CSS 1.5%
  • HTML 0.3%
Find a file
2025-10-02 10:33:22 +02:00
.vscode chore: initial commit 2025-09-13 20:35:41 +02:00
src chore: remove admin section 2025-10-02 10:33:22 +02:00
static chore: initial commit 2025-09-13 20:35:41 +02:00
.gitignore chore: initial commit 2025-09-13 20:35:41 +02:00
.npmrc chore: initial commit 2025-09-13 20:35:41 +02:00
.prettierignore chore: initial commit 2025-09-13 20:35:41 +02:00
.prettierrc chore: initial commit 2025-09-13 20:35:41 +02:00
eslint.config.js chore: initial commit 2025-09-13 20:35:41 +02:00
package-lock.json feat: Add projects showcase page with project details and filtering options 2025-09-26 12:38:38 +02:00
package.json feat: Add projects showcase page with project details and filtering options 2025-09-26 12:38:38 +02:00
README.md chore: initial commit 2025-09-13 20:35:41 +02:00
svelte.config.js chore: initial commit 2025-09-13 20:35:41 +02:00
tsconfig.json chore: initial commit 2025-09-13 20:35:41 +02:00
vite.config.ts chore: initial commit 2025-09-13 20:35:41 +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 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.