I noticed Svelte published some v5 pre-releases. Previously you could only try out Svelte Runes by using the online playground. Now you can run them locally.
Here's how. You'll need:
Download one of the version 5 pre-releases from the Svelte releases page and extract it. Or you could just clone the repo to get the bleeding edge version.
Then move into the dir and do a pnpm install
to install the dependencies.
Then run pnpm run build
to compile everything.
^^^ You know what, scrap that, silly me, I just realised that they are actually publishing these pre-releases to npm. So you can simply link your svelte
dev dependency to the latest pre-release version.
Well then. Instead of linking in package.json
to the version we just compiled, we can just link to the one on npm.
Anyway, I'll press on regardless. It's up to you if you want to compile it locally or not.
Create a new Svelte project in a separate directory.
In package.json
find the svelte
dev dependency and change the version.
To use the npm version:
"svelte": "5.0.0-next.15"
Otherwise, link to your locally compiled version of Svelte:
"svelte": "file:../svelte/packages/svelte"
And then npm install
all your node_modules
.
In Svelte 5 there's a new way of mounting the app. So you'll have to edit main.ts
to look a bit like this:
;
;
;
;
if !target throw new Error"Failed to find #app";
;
;
Then you can run npm run dev
and you should see the app running.
Change Counter.svelte
to use runes, and away you go.
<script lang="ts">
;
;
</script>
<button >
count is
</button>
Have run writing your next Svelte app with runes!