DEV Community

Discussion on: Svelte VS ReactJS Performance Report

Collapse
 
svaani profile image
Vani Shivanand • Edited

Interesting! I had a look at your github. I exactly had the same code. I also got the same scripting time but my rendering time had a huge difference. I shall consider re-running the test code.

Scripting time will be more because it was considered by any virtual-dom framework that to re-draw the tree should be optimized more than the amount of javascript that is being run.

The reason, I feel it is okay to compromise with the scripting time as scripting time is always a lot lesser than render time.

Also, I personally want to try on a high-data loaded app with svelte. Because react/vue has proved their ability over larger sites.

Thank you for the comment.