No description
  • TypeScript 38.3%
  • JavaScript 28.5%
  • Svelte 16.7%
  • HTML 9.6%
  • CSS 6.9%
Find a file
Alfred Jophy 533eb16b98 Cleanup.
2026-02-22 14:24:22 +05:30
.vscode Initial commit. 2026-02-22 11:42:13 +05:30
scripts First few blogs. 2026-02-22 14:08:51 +05:30
src Cleanup. 2026-02-22 14:24:22 +05:30
static First few blogs. 2026-02-22 14:08:51 +05:30
.gitignore First few blogs. 2026-02-22 14:08:51 +05:30
.npmrc Initial commit. 2026-02-22 11:42:13 +05:30
.prettierignore Initial commit. 2026-02-22 11:42:13 +05:30
.prettierrc Initial commit. 2026-02-22 11:42:13 +05:30
bun.lock Cleanup. 2026-02-22 14:24:22 +05:30
eslint.config.js Initial commit. 2026-02-22 11:42:13 +05:30
package.json Cleanup. 2026-02-22 14:24:22 +05:30
README.md Initial commit. 2026-02-22 11:42:13 +05:30
svelte.config.js First few blogs. 2026-02-22 14:08:51 +05:30
tsconfig.json Initial commit. 2026-02-22 11:42:13 +05:30
vite.config.ts First few blogs. 2026-02-22 14:08:51 +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 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography" sveltekit-adapter="adapter:static" mdsvex --install bun site

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.