Posts tagged "react"
4 posts tagged with "react"
link
27 days ago
Diffs, from Pierre @pierre/diffs is an open source diff and code rendering library. It's built on Shiki for syntax highlighting and theming, is super customizable, and comes packed with features. Made with love by The Pierre Computer Company.
https://diffs.com
link
4 months ago
GitHub - vadimdemedes/ink: 🌈 React for interactive command-line apps renderer used by claude code
https://github.com/vadimdemedes/ink
link
5 months ago
note
5 months ago
`useDoubleCheck` might be my favorite frontend hac...
`useDoubleCheck` might be my favorite frontend hack ```typescript function callAll<Args extends Array<unknown>>( ...fns: Array<((...args: Args) => unknown) | undefined> ) { return (...args: Args) =...