READ THIS FIRST!
SvelteKit is still in beta. Expect bugs! Read more here, and track progress towards 1.0 here.
Documentation
Please see the documentation for information about getting started and developing with SvelteKit.
Packages
The SvelteKit community also makes additional SvelteKit adapters available for use.
Developing
This monorepo uses pnpm. Install it...
npm i -g pnpm
...then install this repo's dependencies...
pnpm i
...then build SvelteKit and the other packages:
pnpm build
You should now be able to run the examples by navigating to one of the directories and doing pnpm dev
.
Run pnpm dev
inside the packages/kit
directory to continually rebuild @sveltejs/kit
as you make changes to SvelteKit. Restarting the example/test apps will cause the newly built version to be used.
To use the git hooks in the…