Jason Miller
Jason Miller
Hi Eddy! I have a hunch that this may be a bit out-of-scope for signals, since we're focused on providing a single "box" primitive that folks can build interesting things...
The reason this doesn't work is because we don't currently support fine-grained prop updates in the React integration. The Preact integration supports this because it injects fine-grained prop-to-DOM updates, but...
Preact and the related modules do not require the use of ES Modules or transpilation. We ship ES5 in all but one of the compiled variants in each npm package....
Do you have a link to your findings about `Set`? We use repeatable benchmarks for everything, because it is extremely easy to accidentally measure the wrong thing (or nothing) in...
As far as I am aware, there is no way to implement collapsing of batched value assignments/computations without retaining previous values, degrading performance and causing GC. It's also unnecessary for...
Another idea: `Signal.prototype.isSignal = Symbol.for('Signal')`
[Streaming SSR support](https://github.com/preactjs/preact-render-to-string/pull/259).
This patch should work: ```js var insertBefore = Element.prototype.insertBefore; Element.prototype.insertBefore = function(node, before) { if (node instanceof Text && before instanceof HTMLElement && before.localName === 'font') { return node; }...
Hi there! I came across this benchmark and was surprised to see Yew performing better than a vanilla JS implementation, so I looked into it. Using the benchmark's step button,...
The use-case is this: spawning a dev server for folks in scaffolded projects, many developers don't know what port `http-server` was spawned on (especially if it auto-selected a free port)....