Brandon Konkle
Brandon Konkle

Principal Engineer, type system nerd, Rust enthusiast, supporter of social justice, loving husband & father, avid comic & manga reader, 日本語を勉強してる。

I’m a Software Architect with more than 15 years of experience creating high performance server and front-end applications targeting web and mobile platforms, & today I lead a team at Formidable Labs.

Share


Tags


React

I just found out about React, a JavaScript library from Facebook

The philosophy is really interesting. As I understand it, when there are changes to the data they render to a shadow DOM (which is very fast since nothing is actually updated on the screen), diff it against the live document, and then use the diff to update the document. The result is that re-rendering the whole UI becomes so cheap that you can do it whenever something changes rather than using data binding to update values.

It would also be interesting to experiment with server-side rendering for client-side apps.

An Instagram engineer talking about it: http://qr.ae/GtKbP

Sounds like a very fascinating alternative to data binding!

I’m a Software Architect with more than 15 years of experience creating high performance server and front-end applications targeting web and mobile platforms, & today I lead a team at Formidable Labs.

View Comments