
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
react-use-image
Advanced tools
A react hook for pre-loading images.
npm i react-use-image
# or
yarn add react-use-image
import useImage from 'react-use-image';
const Example = ({ src }) => {
// use the hook
// pass it an image source url
const { loaded } = useImage(src);
if (!loaded) return null;
return <img src={src} alt="Example" />;
};
Image URL, e.g. https://foo.com/cat.jpg
{
"loaded": false, // image found and loaded
"failed": false, // image not found
// actual size of the image
"dimensions": {
"width": 0, // width of image in pixels
"height": 0 // height of image in pixels
}
}
Joe Seifi
MIT
FAQs
A react hook for pre-loading images.
The npm package react-use-image receives a total of 27 weekly downloads. As such, react-use-image popularity was classified as not popular.
We found that react-use-image 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
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.