Create SvelteKit project with Deno
Hey, how do I create SvelteKit project with Deno?
Docs recommends this command:
npx sv create myapp
How does a Deno command doing this looks like?2 Replies
It would translate to
deno run -A npm:create-svelte@latest
I think that doesn't use the Svelte CLI.
deno run -A npm:sv create myapp
did the trick.