No description
  • Svelte 53.6%
  • CSS 26.8%
  • TypeScript 16.9%
  • JavaScript 2.3%
  • HTML 0.4%
Find a file
2026-03-21 11:40:43 -05:00
.vscode feat: init 2026-03-20 15:28:19 -05:00
src feat: add themes 2026-03-21 11:40:43 -05:00
static feat: init 2026-03-20 15:28:19 -05:00
.gitignore feat: init 2026-03-20 15:28:19 -05:00
.npmrc feat: init 2026-03-20 15:28:19 -05:00
.prettierignore feat: init 2026-03-20 15:28:19 -05:00
.prettierrc feat: init 2026-03-20 15:28:19 -05:00
bun.lock feat: shadcn stuff 2026-03-20 17:22:37 -05:00
components.json feat: init 2026-03-20 15:28:19 -05:00
eslint.config.js feat: init 2026-03-20 15:28:19 -05:00
her.md feat: album, artist, miniplayer 2026-03-20 16:42:38 -05:00
package.json feat: shadcn stuff 2026-03-20 17:22:37 -05:00
README.md feat: init 2026-03-20 15:28:19 -05:00
SKEU_GUIDELINES.md feat: color themes 2026-03-20 17:29:45 -05:00
svelte.config.js feat: init 2026-03-20 15:28:19 -05:00
tsconfig.json feat: init 2026-03-20 15:28:19 -05:00
vite.config.ts feat: init 2026-03-20 15:28:19 -05: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.12.8 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:none" sveltekit-adapter="adapter:static" --install bun ./sonidificador

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.