
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
react-render-image
Advanced tools
Render an image in React using a render prop.
npm install --save react-render-image
import React from 'react';
import Image from 'react-render-image';
<Image src={src}>
{({image, loaded, errored}) => {
if (loaded) {
return <img src={src} width={image.width} height={image.height}/>;
}
if (errored) {
return <span>❌</span>;
}
return <span>Loading...</span>;
}}
</Image>
A string
. The image URL.
A function
called when the image is loaded.
A function
called when the image cannot be loaded.
The function
called to render something when the image is loading, loaded or errored.
Parameters:
status
- An object
containing:
loaded
- A boolean
indicating whether the image has loaded.errored
- A boolean
indicating whether the image has errored.image
- The Image
object which can be inspected to determine the width
and height
of the image, or drawn onto a canvas with ctx.drawImage()
.Returns:
A RectNode
.
FAQs
Render an image in React.
The npm package react-render-image receives a total of 5,361 weekly downloads. As such, react-render-image popularity was classified as popular.
We found that react-render-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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.