You asked for TanStack skills, we built the whole pipeline.
Introducing @tan_stack Intent (alpha)
📦 Ship agent-readable "skills" inside npm packages
🔍 Auto-discovered from node_modules
🔄 Knowledge sync with npm update
📂 Distributed - skills live in library repo
🧩 Composable - mix core framework-specific skills
🌐 npm, pnpm, bun, yarn, deno
No stale training data. Just npm install!
🔗 ⬇️🧵
Node.js v22.18.0 is out 🎉
Type stripping is enabled by default 🔥🔥🔥🔥
You can just run `node file.ts` without `--experimental-strip-types` flag.
nodejs.org/en/blog/release/v…
Wrote an article about how React Server Components integrate with a bundler. It's a deep dive into how code splitting works, how RSCs eliminate network waterfalls, how environment directives like "use client" work, CSS loading, etc. Check it out! devongovett.me/blog/parcel-r…
"The open source spirit: To let a billion lemons go unsqueezed. To capture vanishingly less than you create. To marvel at a vast commons of software, offered with no strings attached, to any who might wish to build." world.hey.com/dhh/capture-le…
Snaplet is now Open Source:
supabase.link/O2eQSWS
Last month, @_snaplet shut down. But that's not the end of the story. Some of the team joined @supabase, and we asked @appfactory if he'd like to open source the tech they built.
Today they released 3 new projects: ↓🧵
Took this one a little further 🤏
Magic thing with CSS animations is that you can make them dynamic at runtime with custom properties ✨
:root {--how-high: 10px;}
:root:has(a:hover){--how-high:50px;}
@keyframes jump {50%{translate: 0 var(--how-high);}}
Change with JS even 🤙
Next RSC are so easy to use, it's tempting to just put everything on the server and get less responsive feeling UIs. PPR could be great to combine both but needs some thought as to where to draw that line and where things should live