wavesoft / dot-dom

.dom is a tiny (512 byte) template engine that uses virtual DOM and some of react principles
Apache License 2.0
806 stars 53 forks source link

Benchmarking against React, Morphdom #9

Open SilentCicero opened 7 years ago

SilentCicero commented 7 years ago

You should benchmark your rendering against morphdom and react to see differences. I think it would be good information.

wavesoft commented 7 years ago

That's actually a good idea @SilentCicero , I will prepare something, but it will most probably take some time. If anyone reading this is interesting in doing so, feel free!

SilentCicero commented 7 years ago

@wavesoft checkout how Patrick does it here:

https://github.com/patrick-steele-idem/morphdom#benchmarks

He is testing against virtual-dom.

May be easiest to wrap H in React.createElement then run comparison on the same code.

SilentCicero commented 7 years ago

I would recommend we test against: Morphom, Virtual Dom, and React. Use the tests Patrick used there.

brettg2 commented 6 years ago

+1 it would be great to see how this framework compares with others