My way of giving back to the community <3 Love y'all :)
Find a file
2025-04-25 14:28:12 +03:30
articles/the-graphics-pipeline article: add initial draft of the-graphics-pipeline article 2025-02-15 17:14:28 +03:30
src feat: setup svelte 2025-04-25 14:28:12 +03:30
static feat: setup svelte 2025-04-25 14:28:12 +03:30
.gitignore feat: setup svelte 2025-04-25 14:28:12 +03:30
.npmrc feat: setup svelte 2025-04-25 14:28:12 +03:30
.prettierignore feat: setup svelte 2025-04-25 14:28:12 +03:30
.prettierrc feat: setup svelte 2025-04-25 14:28:12 +03:30
eslint.config.js feat: setup svelte 2025-04-25 14:28:12 +03:30
package.json feat: setup svelte 2025-04-25 14:28:12 +03:30
pnpm-lock.yaml feat: setup svelte 2025-04-25 14:28:12 +03:30
README.md feat: setup svelte 2025-04-25 14:28:12 +03:30
readme.md docs: add readme 2025-02-14 20:21:42 +03:30
svelte.config.js feat: setup svelte 2025-04-25 14:28:12 +03:30
tsconfig.json feat: setup svelte 2025-04-25 14:28:12 +03:30
vite.config.ts feat: setup svelte 2025-04-25 14:28:12 +03:30
vitest-setup-client.ts feat: setup svelte 2025-04-25 14:28:12 +03: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 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.