
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.
jsx-highlighter
Advanced tools
Small and focused library to mark with a css classed span a part of an JSX HTML text.
Small and focused library to mark with a css classed span a part of an JSX HTML text.
If you like it, star; if you don't, please tell me why!! :)
npm install --save jsx-highlighter
Initialize it with the CSS class, search wildcard and searched text
import buildHighlighter from "jsx-highlighter";
...
// "highlighted" is the CSS class applied to the wraping HTML span
// "%" is the wildcard used to search (used only to analyze, removed from the final result)
// "%ome" is the text searched for, so you'd want 'ome', 'Ome', 'OMe', etc to be highlighted
const highlight = buildHighlighter("highlighted", "%", "%ome");
// and when you build your JSX
return <div>{highlight("This is an awesome util!")}</div>;
All fields are mandatory.
This will give you as a result: <span>This is an awes<span class="highlighted">ome</span> util!</span>
FAQs
Small and focused library to mark with a css classed span a part of an JSX HTML text.
We found that jsx-highlighter 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.