DHDan Holloraningrimicorn.hashnode.dev·4d ago · 4 min readSvelte Snippets: Reuse Markup Without a New ComponentYou have a card layout that appears twice in the same component: once wrapped in a link, once bare. The markup is identical apart from the wrapper. For years the Svelte answer was to extract Card.svel00
DHDan Holloraningrimicorn.hashnode.dev·Aug 31 · 5 min readAsync Svelte: Using await Directly in Your ComponentsEvery Svelte codebase eventually grows a little pile of scaffolding around asynchronous data. A let data = $state(null), an $effect that fetches and assigns, a loading flag, an error flag, and a {#if 00
ASAdeesh Sharmainblog.adeeshsharma.com·Aug 10 · 6 min readReactive Editor: click any element in your live app, let your coding agent fix itEvery time I've asked a coding agent to change something on a screen, the conversation goes the same way. I paste a screenshot. I try to describe which button I mean. The agent guesses, edits a file, 00
AEAnnie-Stewart Elijahinalvissraghnall.hashnode.dev·Jul 29 · 13 min readSo, i built an alternative to ngl-Lots of folks where i'm from love to share screenshots of so-called "anoymous" messages sent to them by their friends/close mates whom they shared their links with. All dandy enough, but i wanted stif00
PPrakashinprakashks1307.hashnode.dev·Jul 16 · 10 min readBuilding a Very Long Number Calculator Using Angular, React, Svelte, and VueIntroduction Modern computing has transformed the way we solve mathematical problems. From basic arithmetic to complex scientific calculations, calculators have become indispensable tools. However, tr00
SBSagar Budhathokiinblog.budhathokisagar.com.np·Jul 16 · 4 min readSvelte 5 `$state` won't save to IndexedDB: fixing DataCloneErrorBuilding Recipe Jar, I store every recipe in the browser's IndexedDB. No server, no account, the data just lives on your device. The first time I wired the save button in Svelte 5, it threw this: Data00
JJuddinjudd.hashnode.dev·Jul 16 · 4 min readWhy I built SVOCS: Svelte-first docs in 2026The Frustration That Started It All In 2026, building great documentation should be simple. You write Markdown (or MDX-like files), get beautiful navigation, search, theming, and interactivity—and shi00
SBSagar Budhathokiinblog.budhathokisagar.com.np·Jul 9 · 7 min readFree forever is an architecture, not a pricing decisionI built a recipe keeper called Recipe Jar. You paste a recipe link, it gives you a clean card with just the ingredients and steps, and you can save as many recipes as you want. No account, no ads, wor30
DDimonindimonb19a.hashnode.dev·Jun 21 · 2 min readNice custom Svelte animationsSvelte ships fade, fly, slide, scale, blur, … in svelte/transition so you can just import those ones and use them out of the box. But you also can create your own actions and transitions, and use them00
DDimonindimonb19a.hashnode.dev·Jun 9 · 4 min readPicking Svelte in 2026: the honest tradeoff nobody tells youThe honest version of "which framework should I use in 2026" is boring: use React. It's the safe answer. The ecosystem is enormous, every other dev already knows it, and you will never get fired for c00