
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@toolz/use-viewport
Advanced tools
A custom Hook for React that reports on the current viewport height and width and size classification. It also listens for changes to viewport size.
useViewport() is a custom React Hook that reports on the current height, width, and size moniker of the current viewport. It uses a window listener to auto-update whenever the size of the viewport changes.
const SomeComponent = () => {
const viewport = useViewport();
return <>
<div>The viewport is currently {viewport.width} pixels wide.</div>
<div style={{display: viewport.size === 'xs' ? 'inherit' : 'none'}}>
This div only displays on "xs"-sized viewports.
</div>
<div style={{display: viewport.size === 'xl' ? 'none' : 'inherit'}}>
This div disappears once the viewport reaches an "xl" size.
</div>
</>;
}
const API = {
arguments: {
initialViewportSizes: {
optional,
format: 'an array of viewportSize objects',
defaultValue: [
{
name: 'xs',
minWidth: Number.MIN_SAFE_INTEGER,
maxWidth: 543,
},
{
name: 'sm',
minWidth: 544,
maxWidth: 767,
},
{
name: 'md',
minWidth: 768,
maxWidth: 1023,
},
{
name: 'lg',
minWidth: 1024,
maxWidth: 1279,
},
{
name: 'xl',
minWidth: 1280,
maxWidth: Number.MAX_SAFE_INTEGER,
},
],
},
},
returns: {
getViewportSizes: Function,
height: Integer,
setViewportSizes: Function,
size: string,
width: Integer,
},
}
Examples:
const SomeComponent = () => {
const viewport = useViewport();
return <>
<div>The viewport is {viewport.height} pixels high.</div>
</>
}
The Hook automatically sets a listener on the window object and the height, width, and size values will update upon any change in viewport size.
const API = {
arguments: {
// none
},
returns: [
'viewportSize Objects'
],
}
Every object in the array will have the following data:
const viewportSize = {
name: string,
minWidth: Integer,
maxWidth: Integer,
}
Examples:
const SomeComponent = () => {
const viewport = useViewport();
console.log(viewport.getViewportSizes());
/*
outputs the default viewport sizes:
[
{
name: 'xs',
minWidth: Number.MIN_SAFE_INTEGER,
maxWidth: 543,
},
{
name: 'sm',
minWidth: 544,
maxWidth: 767,
},
{
name: 'md',
minWidth: 768,
maxWidth: 1023,
},
{
name: 'lg',
minWidth: 1024,
maxWidth: 1279,
},
{
name: 'xl',
minWidth: 1280,
maxWidth: Number.MAX_SAFE_INTEGER,
},
]
*/
return <></>
}
const API = {
arguments: {
sizes: {
required,
format: 'Array of viewportSize Objects',
},
},
returns: void,
}
Examples:
const SomeComponent = () => {
const viewport = useViewport();
useEffect(() => {
viewport.setViewportSizes([
{
name: 'big',
minWidth: 1200,
maxWidth: Number.MAX_SAFE_INTEGER,
},
{
name: 'small',
minWidth: 1,
maxWidth: 1199,
},
]);
}, []);
return <></>
}
Since useViewport()'s values are stateful, setting viewport size directly in the body of a functional component will lead to endless re-renders. That's why this example is shown inside of useEffect().
FAQs
A custom Hook for React that reports on the current viewport height and width and size classification. It also listens for changes to viewport size.
We found that @toolz/use-viewport 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.