A nice and simple Svelte Kit template to let me (or anyone else) quickly whip up new projects.
This ESLint and Prettier config uses double-quotes and semicolons.
const msg = "wow";
You can download this repo as a .zip or clone it with git, but a cleaner approach is with degit.
npx degit njs-templates/svelte new-project
cd new-project
yarn
This was meant to be used with VS Code, but it should work with any editor.
You'll be prompted to install any recommended extensions that aren't installed.
If no one on your team is using VS Code, just delete the .vscode/ folder.
pnpm dev to start Vite and make sure everything's working.pnpm build to make sure that building works.pnpm test to make sure Vitest is working.package.json, change the project name and version.LICENSE.txt from the root of the directory.CHANGELOG.md or remove its contents.src/lib/, and static/.pnpm-lock.yaml if you want to use a different package manager..git/ folder if you cloned this repo.git init to start tracking changes.After all that, do whatever. This code is yours now. Credit is appreciated but not needed.