Arne Wiese
wiesson.bsky.social
Arne Wiese
@wiesson.bsky.social
Freelance Software Engineer
I like working with Sveltekit, Supabase, Astro, Payload CMS, Nextjs, Vercel, (...)

arnewiese.de
@dummdidumm.bsky.social - can I call multiple remote functions on different parts on the page? Like in +layout.svelte and then in some nested components again? I'm facing a but where I call myFn.refresh() in a component and it doesn't refresh. It does, if I remove it from the +layout.svelte
October 10, 2025 at 10:30 PM
Reposted by Arne Wiese
lil' treat for all you weekend builders: Svelte now has an official MCP server, courtesy of resident bot wranglers @paolo.ricciuti.me and @khromov.se 🤖

it gives your LLM access to docs and compiler-driven diagnostics — give it a spin and let us know how you get on!

svelte.dev/docs/mcp/ove...
Overview • Docs • Svelte
Overview • Svelte documentation
svelte.dev
October 4, 2025 at 12:15 PM
@dummdidumm.bsky.social what's the preferred pattern to load data from a remote function and populate state for formData?

let postId = $derived(params.id)
let query = $derived(getPost(postId))

let formData = $state({ ... })

$effect(() => {
if(query.current) {
formData = query.current
}
}}
September 17, 2025 at 9:01 PM