Svelte frontend for Damillora's Virtual Memoir
  • Svelte 51.5%
  • TypeScript 45.3%
  • JavaScript 1.6%
  • Dockerfile 0.8%
  • HTML 0.8%
Find a file
2026-02-21 13:19:23 +07:00
src fix: missing comma 2025-08-09 01:03:51 +07:00
static feat: initial commit 2022-07-24 03:52:23 +07:00
.eslintignore feat: initial commit 2022-07-24 03:52:23 +07:00
.eslintrc.cjs chore: update eslint 2023-08-08 20:01:08 +07:00
.gitignore feat: initial commit 2022-07-24 03:52:23 +07:00
.npmrc feat: initial commit 2022-07-24 03:52:23 +07:00
.prettierignore feat: initial commit 2022-07-24 03:52:23 +07:00
.prettierrc feat: initial commit 2022-07-24 03:52:23 +07:00
.woodpecker.yml chore: woodpeckerr fix 2026-02-05 01:48:47 +07:00
Dockerfile chore: update node version 2026-02-05 01:32:05 +07:00
LICENSE feat: initial commit 2022-07-24 03:52:23 +07:00
package-lock.json chore: dependency updates 2026-02-21 11:45:59 +07:00
package.json chore(deps): update dependency unist-util-visit to v5 2026-02-21 05:01:38 +00:00
README.md feat: initial commit 2022-07-24 03:52:23 +07:00
renovate.json Add renovate.json 2026-02-04 18:01:35 +00:00
svelte.config.js feat: update not found handling 2022-07-24 05:04:56 +07:00
tsconfig.json feat: initial commit 2022-07-24 03:52:23 +07:00
vite.config.js feat: update not found handling 2022-07-24 05:04:56 +07:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte 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.