Dale Bustad
Dale Bustad
@jaredpalmer I think there may still be issues with the order of evaluation of the template segments. I'll reproduce this example this evening and make any edits that seem necessary....
I'm also thinking through how I want to document all of this. It might become cumbersome to document how-tos for individual React libraries. But these are definitely questions that people...
That's very true. The problem with full examples in the docs is that they're hard to keep up-to-date. Blog posts don't usually have that problem - people expect that they...
This should be relatively straightforward now that the `Renderer` is easily exposed to its `Sequence`.
I switched over to string concatenation @aweary, but actually saw a slow-down in performance. I'm wondering if, because you're concatenation the same string in your benchmark, if V8 optimizes it...
That's essentially what I tried: ```diff diff --git a/src/render/attrs/index.js b/src/render/attrs/index.js index d25ed78..6b91222 100644 --- a/src/render/attrs/index.js +++ b/src/render/attrs/index.js @@ -15,7 +15,7 @@ const mapWithKey = map.convert({ cap: false }); * @return...
Thanks for all the research on this! @aweary or @ryan-roemer, are you interested in setting up some for-realz benchmarks with `benchmark.js`? I'm amenable. And if the benchmarks show a faster...
Alright, this is next in my queue.
Thanks for expanding on this here! One thought is that this could be optional and explicit, by passing an option to the `toStream` method. Something like `renderer.toStream({ autoInsertChecksum: true }).pipe(res);`
Hi @wayweary. Can you provide a reduced repro that I can work against? This should definitely be addressable, but it'll be easier if I start without having to recreate your...