It's not actually React compatible.
Just why?
11–20 of 56 posts
It's not actually React compatible.
Just why?
> Applications that require minimal latency (e.g. animations, games) are not well suited for Purview It's not actually React compatible. Just why?
* Type/change events fire on the field (e.g. username)
* Username updates the internal model (this.username = 'karthikksv')
* The submit button fires an event so the parent page can act on the entire data model ({ username: 'karthikksv', password: 'fluffykittens' })
I'm concerned that this model won't work well using server-side React components on a network with high latency – each type event would have to round-trip to the server to update in the DOM.
Naturally, sending draw commands has a big downside in efficiency. Maybe we could later exchange X with something that only sends bitmaps?
I know this comment is a joke, but this is actually how react was created. Facebook made a templating language in php called xhp ( https://docs.hhvm.com/hack/XHP/introduction ) and some people at fb developed react as a natural extension to xhp but in JavaScript.
I know this comment is a joke, but this is actually how react was created. Facebook made a templating language in php called xhp ( https://docs.hhvm.com/hack/XHP/introduction ) and some people at fb developed react as a natural extension to xhp but in JavaScript.
looks like it's the react version of https://dockyard.com/blog/2018/12/12/phoenix-liveview-intera... ? edit: nvm, it's listed in the readme as inspiration