
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
ngx-diff2html
Advanced tools
A simple text diff component for Angular, based on diff-match-patch & diff2html.
npm install --save ngx-diff2html
1. Register the NgxDiff2htmlModule in a module, for example app module:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
+ import { NgxDiff2htmlModule } from 'ngx-diff2html';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
+ NgxDiff2htmlModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
2. Import diff2html css in styles.css:
/* You can add global styles to this file, and also import other style files */
+ @import "~diff2html/bundles/css/diff2html.min.css";
3. You may also need to add the following lines to polyfills.ts:
// Add global to window, assigning the value of window itself.
+ (window as any).global = window;
+ (window as any).process = { env: { DEBUG: undefined } };
4. Start using the component:
<ngx-diff2html
left="some text"
right="some other text"
></ngx-diff2html>
NgxDiff2htmlModuleNgxDiff2htmlServiceNgxDiff2htmlComponentngx-diff2html| Input | Type | Required | Description |
|---|---|---|---|
| left | string | Yes | First text to be compared |
| right | string | Yes | Second text to be compared |
| filename | string | Optional, default: '' (empty) | Can be used to display a filename at the top of diff results |
| format | DiffFormat | Optional, default: side-by-side | Possible values: - side-by-side- line-by-line |
| style | DiffStyle | Optional, default: word | Possible values: - word- char |
| Output | Type | Required | Description |
|---|---|---|---|
| diffChange | string | Optional | Event fired when diff changes. Returns text diff in unified format |
NgxDiff2htmlService.getDiff(text1, text2, filename)Get text diff between text1 & text2 in unified format.
Returns:
string diffNgxDiff2htmlService.diffToHTML(diff, format, style)Convert unified diff string to HTML using diff2html.
Returns:
string HTML diffimport { Component } from '@angular/core';
import { NgxDiff2htmlService } from 'ngx-diff2html';
@Component({
selector: 'app-root',
template: `<div [innerHtml]="diffHTML"></div>`,
styles: [],
providers: [
NgxDiff2htmlService
]
})
export class AppComponent {
diffHTML: string = null;
constructor(private diffService: NgxDiff2htmlService) {
const diff = this.diffService.getDiff('first text', 'second text');
this.diffHTML = this.diffService.diffToHTML(diff);
}
}
Run ng build ngx-diff2html to build the project. The build artifacts will be stored in the dist/ directory.
After building your library with ng build ngx-diff2html, go to the dist folder cd dist/ngx-diff2html and run npm publish.
This project is licensed under the MIT license.
FAQs
A text diff component library for Angular.
We found that ngx-diff2html 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.