
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-to-text
Advanced tools
Convert react components to plain text without any HTML markup. Written in Typscript with zero dependencies.
yarn add react-to-text
npm install --save react-to-text
react-to-text takes in any React component and will return the text content (without any HTML). It will accept any value React can render (strings, arrays, Fragments, etc.), and can handle deeply nested components.
import reactToText from 'react-to-text';
const text = reactToText(
<div>
We sell <a href="/apples">apples</a> and <a href="/oranges"> oranges</a>.
</div>
)
console.log(text);
> "We sell apples and oranges."
The default logic won't always work, for example when you have a custom component which simply renders one of it's props. In this case you can define custom stringification behavior using a second argument.
import reactToText, { ResolverMap } from 'react-to-text';
const CustomComponent: React.FC<{ title: string }> = (props) => <p>{props.title}</p>;
// since this component does not have any direct children
// it will not output anything by default
console.log(reactToText(<CustomComponent title="foo" />));
> ""
// using a custom resolver map using the custom component as it's key
// and the stringification logic as it's value, we can adjust this behavior
const resolvers: ResolverMap = new Map([
[CustomComponent, (props: { title: string }) => props.title],
]);
console.log(reactToText(<CustomComponent title="foo" />, resolvers));
> "foo"
Deploys to NPM are automatically run when a release is created in Github (see .github/workflows/npm-publish.yml).
Licensed under MIT.
FAQs
Convert react components to plain text without any HTML markup
The npm package react-to-text receives a total of 81,931 weekly downloads. As such, react-to-text popularity was classified as popular.
We found that react-to-text 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.