Apr 2 · 6 min read · Originally published at recca0120.github.io GitHub has over 100 million developer accounts. But have you ever wondered — where do you rank in your own country? That thought led me to spend a few days vibe coding CodeAtlas, a global developer ranking ...
Join discussionMar 20 · 1 min read · $effect runs code as a side effect after the DOM has been updated, automatically tracking reactive dependencies without declaring them explicitly. The golden rule: always prefer $derived for computed values and reserve $effect for true side effects l...
Join discussionMar 20 · 1 min read · $state creates deep reactive state through ES6 Proxy — every mutation to nested arrays or objects automatically updates the UI. $derived memoizes computed values recalculating only when dependencies change. Both runes work in .svelte files, shared .t...
Join discussionMar 20 · 1 min read · Svelte compiles away the framework at build time: no virtual DOM, no framework runtime in the bundle, just surgical DOM updates generated by the compiler. Svelte 5 takes this principle further with Runes, a signal-based reactivity system that works i...
Join discussionMar 14 · 1 min read · Svelte 5 + SvelteKit reference. Svelte 5 runes replace reactive let and $: labels <script> // Before (Svelte 4): let count = 0; $: doubled = count * 2; $: { document.title = `Count: ${count}`; } // After (Svelte 5): let count = $state(0); let double...
Join discussionMar 12 · 7 min read · The Framework Choice Is Not the Architecture Decision Every quarter, a new "React vs. Svelte vs. X" benchmark post goes viral. Teams spend weeks evaluating, build a proof-of-concept, and then ship the same over-fetching, client-rendered SPA they woul...
Join discussion
Mar 1 · 5 min read · Started with React. Next.js, to be precise. But deployment revealed a problem. Vercel had conflicts between API routes and frontend routes. Switched to Svelte. Good decision. Svelte is different. React and Vue create virtual DOMs at runtime and diff...
Join discussionMar 1 · 5 min read · Vape liquid prices vary wildly depending on where you buy. Same product, 8,000 won here, 12,000 won there. I thought it would be nice to compare them at a glance. So I built vapecompare. The idea was simple. Use Naver Shopping API. They have the mos...
Join discussion