
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.
@benedicte/html-diff
Advanced tools
A lightweight JavaScript library to highlight changes between two HTML strings. It wraps inserted content with `` tags and deleted content with `<del>` tags, making it ideal for visualizing diffs in rich text content.
A lightweight JavaScript library to highlight changes between two HTML strings. It wraps inserted content with <ins> tags and deleted content with <del> tags, making it ideal for visualizing diffs in rich text content.
<ins> and deletions in <del>You can see a live demo of html-diff in action here: Demo
Install via npm:
npm install @benedicte/html-diff
htmlDiff(htmlBefore: string, htmlAfter: string): string
Parameters:
htmlBefore (required) – Original HTML stringhtmlAfter (required) – Updated HTML stringReturns the resulting HTML string with:
import { htmlDiff } from '@benedicte/html-diff';
const before = '<p>Hello world!</p>';
const after = '<p>Hello brave new world</p>';
const result = htmlDiff(before, after);
console.log(result);
// Output: <p>Hello <ins>brave new </ins>world<del>!</del></p>
MIT
Contributions, bug reports, and feature requests are welcome! Feel free to open an issue or submit a pull request.
FAQs
A lightweight JavaScript library to highlight changes between two HTML strings. It wraps inserted content with `` tags and deleted content with `<del>` tags, making it ideal for visualizing diffs in rich text content.
We found that @benedicte/html-diff demonstrated a healthy version release cadence and project activity because the last version was released less than 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.