"It doesn’t use any kind of diffing algorithm nor virtual dom which makes it really fast."<p>Aren't Virtual doms there to improve speed by reducing unecessary writes to the DOM?
Looks interesting, i'll keep an eye on it. Author's blogpost with more details (and a benchmark): <a href="https://medium.com/@marcisbee/how-i-built-super-fast-js-framework-faster-than-react-ea99f0d03150" rel="nofollow">https://medium.com/@marcisbee/how-i-built-super-fast-js-fram...</a>
I always thought this! No matter how fast the Virtual DOM and diffing is, at it's core you are doing 2 writes. If you could just directly manipulate the DOM, that would always be faster. Really cool that someone put it into practice. I'll try it out when I have some time.