Martin Kavík
Martin Kavík
> No, I was just wondering why everyone targets VDOM when there are frameworks like svelte that targets DOM Everything has trade-offs. And there are different trade-offs for JS and...
> They have real world examples of people using Svelte purely because all other options were too slow for their use cases. @awulkan Could you post links to some of...
`content_type` is a header so I would make it more general. The first idea: - `fn headers(&self) -> &fetch::Headers` - `fn check_headers(&self, impl FnOnce(&fetch::Headers, &mut [String])) -> fetch::Result` - It...
> How do you propose `the content_type_header.value()` bit to work? It was just the first idea. I would need more time to think about it, but unfortunately it hasn't the...
> In fact, what I really want is to get rid of manual dispatch In other words - you want to remove boilerplate (?). Boilerplate (aka wiring/plumbing) is the known...
@seed-rs/core, @kaushalyap Is there a volunteer? I have VirtualDOM updates in my todo list so it would be nice to compare results before and after refactor. And comparing with other...
https://github.com/krausest/js-framework-benchmark/pull/696
- Support for element keys has been merged (https://github.com/seed-rs/seed/pull/357), so we should add keyed version to [krausest/js-framework-benchmark](https://github.com/krausest/js-framework-benchmark). - @1init found this benchmark - https://github.com/ivanceras/sauron-perf. I think it's good enough to...
@Ben-PH Thanks for feedback/ideas. I want to rewrite the content of seed-rs.org after the next release, so I'll try to add a section on performance and I'll maybe add it...
Another draft based on @TatriX's examples: ```rust fn view(model: &Model) -> Node { let (disabled, active, blue) = (true, true, true); custom![ tag::custom("custom-element"), attr::id("my-container"), attr::class!["container", "my-class", when!(active => "active")], list![...