Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is react-virtualized is all about? How its different from normal react.js?

how react-virtualized in different than normal reactJs. Can anyone please explain me with an example ?

Thanks in advance.

like image 486
Abhipsa Mishra Avatar asked Mar 19 '17 18:03

Abhipsa Mishra


1 Answers

Author of react-virtualized here. I think you might find the slides from a recent presentation I made about the library helpful. I suggest starting here and stepping through the slides (by pressing the right arrow key): https://bvaughn.github.io/forward-js-2017/#/10/0

I think this talk will be posted to the Forward JS YouTube channel soon but as of now, only the slides are available.

In short, react-virtualized helps improve the performance of your React application by limiting the number of calls to render as well as the number of DOM elements created and added to the page.

Edit: Link to the Forward JS talk

like image 117
bvaughn Avatar answered Sep 28 '22 07:09

bvaughn