react-virtualized
react-window
react-virtualized | react-window | |
---|---|---|
53 | 43 | |
26,932 | 16,729 | |
0.2% | 0.5% | |
5.0 | 5.0 | |
7 months ago | 4 days ago | |
JavaScript | TypeScript | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
react-virtualized
-
Optimizing React The Right Way For Blazing Fast Apps
React Virtualized, React Window (a light-weight alternative with smaller bundle size and simpler API), and React-Window-infinite-loader are node packages for implementing List Windowing in various contexts.
-
Infinite Pixels
>But this does fall apart for very very large grids, as you get close to the height limit described in this article.
This was solved by a now unmaintained virtualization library that predates both of these libraries: https://github.com/bvaughn/react-virtualized
The react-virtualized library works around this issue by scaling the the scroll position it sets for a row based on the ratio of "max CSS height allowed by browser" to "computed height of all rows" if the latter is greater than the former: https://github.com/bvaughn/react-virtualized/blob/master/sou...
-
Show HN: Nue โ Apps lighter than a React button
Make a demo with react-virtualized[0] and see if it crashes. Hint: It will not[1]. React can easily render 1 million rows with high performance without relying on WASM [2]
Here is the demo of react-virtualized[3], in which I entered 10m as the row count and scrolled to the bottom without crashing.
[0] https://github.com/bvaughn/react-virtualized
-
Why React Virtualized Matters: Rendering Smart, Not Hard
Ever built a list so long that your app crawled to a halt? Enter React Virtualized โ a library that renders only what the user sees, not the entire dataset. It's the frontend equivalent of not reading an entire book just to quote a single line.
-
Top 20 Modern React Libraries To Supercharge Your Next Big Project
Resource: React Virtualized GitHub
-
14 Must-Have React Libraries Every Beginner Developer Should Know in 2025: ๐
Efficient rendering for large lists: Efficiently render massive lists and tables by showing only whatโs visible in the viewport. ๐ Boosts performance for large datasets. ๐github.com/bvaughn/react-virtualized
- 14 Super Useful React Libraries You Should Know
-
React Performance Optimization Techniques Part 1
To implement list virtualization in React, we can use one of two libraries: react-window or react-virtualized, both created by the same author. In this case, we will use react-window due to its simplicity.
-
Top 5 Libraries to Boost Performance in React Applications
1. React Virtualized
-
Twitter Like News Feed UI System Design
NOTE:- We can also use alternate approach like react-window and react-virtualized https://www.npmjs.com/package/react-virtualized
react-window
-
Optimizing React The Right Way For Blazing Fast Apps
React Virtualized, React Window (a light-weight alternative with smaller bundle size and simpler API), and React-Window-infinite-loader are node packages for implementing List Windowing in various contexts.
-
99% of frontend devs don't use this
If you're using React.memo, React.useCallback, or virtualized lists (like react-window), new function references can cause unwanted re-renders. Since the function is recreated every time, memoization doesn't help.
-
React Performance Optimization Techniques Part 1
To implement list virtualization in React, we can use one of two libraries: react-window or react-virtualized, both created by the same author. In this case, we will use react-window due to its simplicity.
-
Improve the Performance of Your React App with Virtualization
react-window react-virtualized
- Optimizing React Table Rendering By 160x !!!
-
Virtual Scrolling in React: Implementation from scratch and using react-window
As we have seen in the previous section we can implement virtual scrolling from scratch. In this section, we'll discuss a third-party tool called react-window that allows us to implement virtual scrolling in a much easier way.
-
React Virtualisation from scratch
If you have been using React for awhile, you may have heard of the infamous virtualisation library react-window or it's predecessor react-virtualized
-
Top 7 Libraries for Blazingly Fast ReactJS Applications
React Window is used to render long lists. Imagine you have a list of 1,000 items. Only ten are visible simultaneously, but your code tries to render all 1,000 items simultaneously.
-
Is there a perfect virtual list solution in react?
You can try react-window by Brian Vaughn
-
Help creating an infinite scroll and skew scroll animation at the same time
I'm trying to use react-window and react-nice-scroll together but unfortunately it didn't work at all. As soon as I wrap my component with from react-nice-scroll everything disappears.
What are some alternatives?
react-lazyload - Lazy load your component, image or anything matters the performance.
react-infinite
react-recycled-scrolling - Simulate normal scrolling by using only fixed number of DOM elements for large lists of items with React Hooks
react-list - :scroll: A versatile infinite scroll React component.