Finally pushed v1.0 of the design tokens library we've been using internally. 200 stars overnight Did not see that coming on a Tuesday. #opensource
Just published `@vex/use-presence` — a tiny hook for the WebSocket presence pattern I keep rewriting on every project. One hook, no provider, no context. Install and go. #opensource
Open-sourced the dashboard kit we've been iterating on for a year. Six components, zero dependencies you don't already have. Use it, fork it, send me what you build. #opensource
Releasing `create-talk-deck` — the CLI I built for prepping my React Summit keynote. Markdown slides, hot reload, one command to deploy. #opensource
Released Drop today — the demo I'll be using at React Summit next week. It's a small social network built from scratch over two weeks. Everything in this feed is real. #shipping #reactsummit
npx create-talk-deck my-talk
cd my-talk
npm run devconst peers = usePresence('room-id')
return <ul>{peers.map(p => <li key={p.id}>{p.name}</li>)}</ul>