
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
use-scroll-direction
Advanced tools
A simple, performant, and cross-browser hook for handling scroll in your next react app.
A simple, performant, and cross-browser hook for detecting scroll direction in your next react app.
Performant 🔥
Do what is only needed. In a good way.
Use passive listener and throttling to make it invesible for your device.
Versatile 💪🏼
Handle both X & Y axis, on browser window or custom element (ref).
Need more quick/lazy response? Play with wait option.
Microlight 🪶
It's lighter than the air, only ~1.6kB.
Cross-everything 🖥️
The same behavior on all kind of browsers and devices. No excuces (even on Iphone Safari).
Great support 👨🏻
Stuck with implementation or has interesting use case and need something more? Create an issue and share your voice.
npm i use-scroll-direction
The hook returns the object with the actual scroll direction which could be one of three states: 'NONE', 'DOWN', 'UP', 'LEFT', 'RIGHT' and useful booleans.
import {useScrollDirection} from "use-scroll-direction";
export const WindowExample = () => {
const {
scrollDirection,
isScrolling,
isScrollingUp,
isScrollingDown,
isScrollingLeft,
isScrollingRight
} = useScrollDirection();
useEffect(() => {
console.log(scrollDirection)
}, [scrollDirection]);
return (
<div>{...}</div>
)
};
import {useScrollDirection} from "use-scroll-direction";
export const ComponentRefExample = () => {
const elementRef = useRef(null);
const {scrollDirection} = useScrollDirection({ref: elementRef});
useEffect(() => {
console.log(scrollDirection)
}, [scrollDirection]);
return (
//The content needs to overflow a container
<div ref={elementRef} style={{height: '100vh', overflowY: 'scroll'}} >
<div>{...}</div>
</div>
)
};
| Name | Type | Description |
|---|---|---|
wait | ?number | Time in ms for throttling of scroll handler (default: 50) |
timeToReset | ?number | Time in ms after last scroll event to reset the state (default: 150) |
ref | ?HTMLElement | When passed, the listener will be attached to element instead of window object |
FAQs
A simple, performant, and cross-browser hook for handling scroll in your next react app.
We found that use-scroll-direction 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.