Minimal README with install/run instructions and quick demo steps.
pnpm install
pnpm dev
Open the URL shown by Vite (usually http://localhost:5173).
pnpm build
pnpm preview
src/lib/components/Counter.svelte — counter example (event handling).src/lib/components/Todo.svelte — todo app (input binding + list).src/routes/+page.svelte — main page importing the components.screenshots/01-home.pngscreenshots/02-counter.pngscreenshots/03-todo.pngIf you want, I can also create the screenshots/ folder and add a small script to capture the app pages, or produce a single-slide speaker note file. Which next?
Everything you need to build a Svelte project, powered by sv.
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
pnpm dlx [email protected] create --template minimal --types jsdoc --install pnpm Practice
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
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.