
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-element-resize
Advanced tools
Element resize sensor with optional debounce
npm install --save react react-element-resize
Don't forget to manually install peer dependencies (react) if you use npm@3.
<script src="https://unpkg.com/react/dist/react.min.js"></script>
<script src="https://unpkg.com/react-element-resize/build/react-element-resize.min.js"></script>
(Module exposed as `ReactElementResize`)
http://nkbt.github.io/react-element-resize
https://codepen.io/nkbt/pen/RVYWQm
import React from 'react';
import ReactDOM from 'react-dom';
import {ReactElementResize} from 'react-element-resize';
const onResize = ({width, height}) =>
console.log({width, height});
const onScroll = ({offsetLeft, offsetTop, scrollLeft, scrollTop}) =>
console.log({offsetLeft, offsetTop, scrollLeft, scrollTop});
const App = () => (
<ReactElementResize debounceTimeout={200} onResize={onResize} onScroll={onScroll}>
{data => <pre>{JSON.stringify(data, null, 2)}</pre>}
</ReactElementResize>
);
const appRoot = document.createElement('div');
document.body.appendChild(appRoot);
ReactDOM.render(<App />, appRoot);
// TODO
MIT
FAQs
Element resize sensor with optional debounce
The npm package react-element-resize receives a total of 577 weekly downloads. As such, react-element-resize popularity was classified as not popular.
We found that react-element-resize 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.