Wo sucht er denn?
20.11.2025 05:59 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0@wiesson.bsky.social
Freelance Software Engineer I like working with Sveltekit, Supabase, Astro, Payload CMS, Nextjs, Vercel, (...) arnewiese.de
Wo sucht er denn?
20.11.2025 05:59 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0We create coloring pages with nano banana, but yours is next level
07.11.2025 23:19 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0I have built various sveltekit apps and might be interested! ๐
30.10.2025 17:04 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0For form() with enhance, it tries to get the result from the await submit(); but it's actually in myFormAction.resultsโฆ
Overall it works and the small mistakes are not that critical, but I have like 6 sessions running in parallel and when all are doing the same mistakes very day ๐
Sure! In the GitHub repo? For example, Claude often tries to use .pending (not .loading) and sth like if remoteFunctionCmd().error (it's a command, not query)
24.10.2025 07:43 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0I'm also still experimenting, but remote functions + svelte mcp + hints how to use it in agents.md / claude.md also have a lot of small mistakes. I will try the skills next time. It's kind sad that LLMs have a knowledge cut off and everything new is not included
24.10.2025 07:08 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Having Claude skills for remote functions, runes, and other things would be more helpful than the MCP, in my opinion. There are certain things that are always wrong and annoying to fix repeatedly (like every session) because they arenโt part of the โgeneral knowledgeโ of the LLM
23.10.2025 17:03 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0My minimal example is obviously working โฆ once I find it, I will create a demo
11.10.2025 07:40 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Iโll create an example tomorrow
10.10.2025 22:51 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0*Same remote function
use case is that I have a header that needs the title and I have some content somewhere else that needs other data from that same remote function
Is this a bug or feature? ๐
10.10.2025 22:30 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0@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
10.10.2025 22:30 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0lil' 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...
You don't happen to work with freelancers? Like, say, 20-40 hours per week?
04.10.2025 11:43 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0@dummdidumm.bsky.social
github.com/wiesson/svel... I made this little page to test some patterns after each svelte/kit release to see if sth is broken or works
@sveltesociety.dev @svelte.dev
I think I got it ๐ - wasn't that hard
17.09.2025 21:26 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0const initial = await getPost(params.id);
let formData = $state({
title: initial.title,
content: initial.content
});
Maybe just like this? But what happens if id changes?
let query = $derived(getPost(postId))
let formData = $state(query.current)
looks nice, but doesn't work, because $state doesn't react to the derived changes
like this? If post id changes, the query reruns and $effect picks it up and updates formData. Can I (re)assign the $state without the $effect?
17.09.2025 21:02 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0@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
}
}}
Or more in the answer ๐
07.08.2025 17:49 โ ๐ 2 ๐ 0 ๐ฌ 1 ๐ 0Iโm also interested in this question :)
07.08.2025 17:49 โ ๐ 2 ๐ 0 ๐ฌ 1 ๐ 0Itโs sooo good!
I have refactored like 30 routes to use the remote functions, and it feels great! Now modals can call the same functions as forms in other places without thinking about the exact path where the action might be
Sad to read though. I'm a huuuuge fan of Claude Code
02.07.2025 10:23 โ ๐ 2 ๐ 0 ๐ฌ 1 ๐ 0I really canโt wait to use it! It solves all my problems ๐
Especially when working with forms. I had so many cases where the page.server.ts is located in some nested nested folder or I moved a dialog and forgot to update the action route ..
Beautiful ๐ฅน
30.05.2025 21:17 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0it works โฆ :)
30.05.2025 20:44 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0<picard meme here>
30.05.2025 20:39 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0I tried FF, Chrome and safari - its just blank
30.05.2025 20:39 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0