
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
react-easy-infinite-scroll-hook
Advanced tools
A react hook for creating simple, fast and lightweight components with infinite scrolling in any direction, supporting both windowed and scrollable elements.
A hook that will save you from endless scrolling problems! Infinite scrolling that really works and is very easy to integrate!
This hook allows you to create simple, lightweight components with infinite scrolling in all directions, supporting both windowed and scrollable elements.
Works with any third-party libraries, you just need to specify the correct container for the ref object.
Check out the demo for some examples.
up, down, left, right)100% test coverage~2.4kB # with npm
npm install --save react-easy-infinite-scroll-hook
# with yarn
yarn add react-easy-infinite-scroll-hook
You can create infinite scrolling in any direction and in any pair, for example: up-down, down-right, etc. and even all at once.
import useInfiniteScroll from 'react-easy-infinite-scroll-hook';
const InfiniteListComponent = ({ isLoading, items, canLoadMore, next }) => {
// TypeScript example:
// const ref = useInfiniteScroll<YourElemntType>(...props);
const ref = useInfiniteScroll({
// Function to fetch more items
next,
// The number of items loaded if you use the "Y-scroll" axis ("up" and "down")
// if you are using the "X-scroll" axis ("left" and "right") use "columnCount" instead
// you can also use "rowCount" and "columnCount" if you use "Y-scroll" and "X-scroll" at the same time
rowCount: items.length,
// Whether there are more items to load
// if marked "true" in the specified direction, it will try to load more items if the threshold is reached
// support for all directions "up", "down", "left", "right", both individually and in all directions at the same time
hasMore: { down: canLoadMore },
});
return (
<div
ref={ref}
style={{
height: 500,
overflowY: 'auto',
}}
>
{items.map((item) => (
<div key={item.key}>{item.value}</div>
))}
{isLoading && <div>Loading...</div>}
</div>
);
};
This hook supports all react-virtualized components (Collection, Grid, MultiGrid, List, Masonry, Table). Check out the demo for more examples.
Try it live:
| Component | Description | Link |
|---|---|---|
| List | Virtualized List component with infinite scroll | |
| Grid | Virtualized Grid component with infinite scroll down and right |
import useInfiniteScroll from 'react-easy-infinite-scroll-hook';
import { List } from 'react-virtualized';
const VirtualizedInfiniteListComponent = ({ isLoading, items, canLoadMore, next }) => {
const ref = useInfiniteScroll({
next,
rowCount: items.length,
hasMore: { down: canLoadMore },
});
return (
<div>
<List
ref={ref}
width={500}
height={500}
rowHeight={60}
rowCount={items.length}
rowRenderer={({ key, index, style }) => {
const item = data[index];
return (
<div key={key} style={style}>
{item}
</div>
);
}}
/>
{isLoading && <div>Loading...</div>}
</div>
);
};
After initialization, this hook returns a React ref object, which you must pass to your element ref.
| Name | Required | Description | Type | Default Value |
|---|---|---|---|---|
| next | Yes | A callback when more items are requested by the user. Receives a single parameter specifying the direction to load e.g. (direction) => Promise<void> | Function | |
| hasMore | Yes | Whether there are more items to load. If marked true in the specified direction, it will try to load more items if the threshold is reached. Expect object with directions to load { up: false, down: false, left: false, right: false } | object | |
| rowCount | Condition | Number of items in a vertical list (scroll axis Y). Required if you are using vertical scroll. | number | |
| columnCount | Condition | Number of items in a horizontal list (scroll axis X). Required if you are using horizontal scroll. | number | |
| onScroll | The callback is called when the container is scrolled: ({ clientHeight: number, scrollHeight: number, scrollTop: number, clientWidth: number, scrollWidth: number, scrollLeft: number }) => void | Function | ||
| initialScroll | The initial scroll position of the element, which is applied after the ref has been initialized | object | ||
| reverse | The direction of the scroll axis is used to create scrolling in the opposite direction, for example when using the CSS style flex-direction: 'row-reverse' | object | ||
| scrollThreshold | The threshold at which the next function is called. It can be specified in pixels from the scrollbar value, for example '200px' and as a percentage of the container size from 0.1 to 1 (1 is 100%) | number or string | 1 | |
| windowScroll | When set to true, uses a window as the scroll element. If you are using a scroll window, then anything you pass to the ref will be ignored | boolean | false |
react-easy-infinite-scroll-hook aims to support all evergreen browsers and recent mobile browsers for iOS and Android. IE 9+ is also supported.
If you find a browser-specific problem, please report it.
Yes you can! To use it with other libraries you must specify the correct DOM element for the
refobject.
flex-direction: 'column-reverse'?Yes, just pass
reverse: { column: true }to props forflex-direction: 'column-reverse'orreverse: { row: true }forflex-direction: 'row-reverse'.
react-virtualized MultiGrid component?
MultiGridis a complex component with a lot of scrollable containers, and to use it you must specify the correct container for therefobject:
import React, { useCallback } from 'react';
import useInfiniteScroll from 'react-easy-infinite-scroll-hook';
import { MultiGrid } from 'react-virtualized';
const VirtualizedInfiniteMultiGridComponent = ({ isLoading, items, canLoadMore, next }) => {
const ref = useInfiniteScroll({
next,
columnCount: items.length,
hasMore: { right: canLoadMore },
});
// Use `useCallback` so we don't recreate the function on each render - Could result in infinite loop
const selectRef = useCallback(
(node) => {
ref.current = node?._bottomRightGrid;
},
[ref]
);
return (
<div>
<MultiGrid ref={selectRef} {...props} />
{isLoading && <div>Loading...</div>}
</div>
);
};
react-window?
react-easy-infinite-scroll-hookworks with any DOM element, so just specify the correct container for therefobject:
import React, { useCallback } from 'react';
import useInfiniteScroll from 'react-easy-infinite-scroll-hook';
import { FixedSizeList } from 'react-window';
const Component = ({ isLoading, items, canLoadMore, next }) => {
const ref = useInfiniteScroll({
next,
columnCount: items.length,
hasMore: { right: canLoadMore },
});
// Use `useCallback` so we don't recreate the function on each render - Could result in infinite loop
const setRef = useCallback((node) => {
if(node)
ref.current=node._outerRef
}, []);
return (
<FixedSizeList
ref={setRef}
className="List"
width={600}
height={500}
itemSize={60}
itemCount={items.length}
>
{Row}
</FixedSizeList>);
};
Please read through our contributing guidelines. Included are directions for opening issues, coding standards, and notes on development.
Code released under the MIT License.
FAQs
A react hook for creating simple, fast and lightweight components with infinite scrolling in any direction, supporting both windowed and scrollable elements.
The npm package react-easy-infinite-scroll-hook receives a total of 551 weekly downloads. As such, react-easy-infinite-scroll-hook popularity was classified as not popular.
We found that react-easy-infinite-scroll-hook demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.