Andrew Vickers
Andrew Vickers
Stencil seems like it abstracts away a lot, but here's a general idea for web components ```javascript class MyStencilCustomElement extends HTMLElement { static get observedAttributes() { return [/*insert Attr here*/]...
Hi Karim, I actually have actually been working on my own WC library as a reference implementation. It is themeable, so hopefully not everyone will need to roll their own....
Hi Karim, Well, I suppose it's true that the way that I currently make SPAs is kind of a Matryoshka doll of WCs. That's not strictly necessary.. I am in...
This issue should probably be raised in the TKO repo, as well.
Are [Proxies](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) not a viable option for you?
There are a couple of ways you could use Proxies here. One would be to use the basic get trap to unwrap the entire VM automatically. The other would be...
Dictionaries are now implemented natively in javascript as Maps. Creating observableMap()s for KO would be a lot of work; however, maybe this will help you [https://codesandbox.io/s/cool-brown-71meu](https://codesandbox.io/s/cool-brown-71meu)
HTTP/2 allows for full duplex communication, and has nearly universal browser support at this point, so step one is making sure that your server has it enabled and is serving...
Thanks, Armando. I think Christian does a better job of explaining it than Facebook did. Brian, [here is a text and graphics based overview of the Flux pattern](https://code-cartoons.com/a-cartoon-guide-to-flux-6157355ab207). Implementing Overmind...
@lrn2prgrm, I think that Overko is great because it's really a typical modern state management library that does what people will expect. The reason I joked about people telling me...