Aiden Bai
Aiden Bai
### Main programming language JavaScript ### Tutorial title Making the Virtual DOM. Faster. ### Tutorial URL https://aidenybai.com/thoughts/virtual-dom ### Category * [ ] 3D Renderer * [ ] Augmented Reality *...
After reading through https://marvinh.dev/blog/benchmarks/, I have found that Million's benchmarks are skewing in Million's favor (view the Accidental overhead section. Million currently has adaptors for each VDOM library in order...
**Describe the bug** Wouter errors when integrated into a Million/React environment **To Reproduce** ```js import { createRoot, useState } from 'million/react'; import { Link, Route } from 'wouter'; function App()...
https://twitter.com/cuthanh15/status/1553420515884183552
It would be very helpful if pnpm was included in the benchmarks
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
> this issue is a stub ```jsx const RickAndMorty = () => { const [counter, setCount] = useState(1); // unused const handleClick = () => { setCount((value) => value +...
What if we could do something like this? ```jsx const Block = block(function({ children }) { return ... }) bonk ```