Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-html-renderer
Advanced tools
React component that renders an HTML string as a React component tree
React component that renders an HTML string as a React component tree.
Note: This component uses html-react-parser
under
the hood but makes no promises about changing the underlying library in a
future release.
npm install --save react-html-renderer
import React from 'react'
import { HTMLRenderer } from 'react-html-renderer'
// Components to which elements are mapped
import Heading from './Heading'
import Subheading from './Subheading'
import Link from './Link'
// HTML to render as React components
const html = `
<h1>React</h1>
<h2>A JavaScript library for building user interfaces</h2>
<p>
<a href="#">Get Started</a>
</p>
`
// Note that default props can be set using the following pattern:
//
// `props => <Comp foo="bar" {...props} />`
//
const App = () => (
<HTMLRenderer
html={html}
components={{
h1: props => <Heading color="red" {...props} />,
h2: Subheading,
a: Link,
}}
/>
)
HTMLRenderer
will render something that looks like the following:
;[
<Heading color="red">React</Heading>,
<Subheading>A JavaScript library for building user interfaces</Subheading>,
<p>
<Link to="#">Get Started</Link>
</p>,
]
Name | Type | Description |
---|---|---|
html | PropTypes.string | HTML to render. |
components | PropTypes.objectOf(PropTypes.node) | An object mapping an HTML element type to anything React can render (numbers, strings, elements, etc.). |
FAQs
React component that renders an HTML string as a React component tree
The npm package react-html-renderer receives a total of 1,198 weekly downloads. As such, react-html-renderer popularity was classified as popular.
We found that react-html-renderer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.