
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@livechat/angular-widget
Advanced tools
Angular component to integrate LiveChat with your single-page app
Library to integrate LiveChat Widget with your Angular App.
StackBlitz live example.
npm install --save @livechat/angular-widget
LivechatWidgetModule in Angular AppModule.import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { LivechatWidgetModule } from '@livechat/angular-widget'
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
LivechatWidgetModule,
],
providers: [],
bootstrap: [
AppComponent,
]
})
export class AppModule { }
<livechat-widget licenseId="10073628"></livechat-widget>
As optional parameters, you can define:
groupchatBetweenGroupsparamsvisitorgaVersionTo get more details about usage of the optional paramteres please read our tracking code documentation.
<livechat-widget licenseId="10073628" (onChatLoaded)="onChatLoaded($event)"></livechat-widget>
import { Component } from '@angular/core';
import { LiveChatWidgetApiModel } from '@livechat/angular-widget';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
liveChatApi: LiveChatWidgetApiModel
constructor() { }
onChatLoaded(api: LiveChatWidgetApiModel) {
this.liveChatApi = api;
}
}
<livechat-widget #liveChatWidget licenseId="10073628" ></livechat-widget>
import { Component, ViewChild, OnInit, OnDestroy } from '@angular/core';
import { LiveChatWidgetModel } from '@livechat/angular-widget';
import { Subscription } from 'rxjs';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent implements OnInit, OnDestroy {
@ViewChild('liveChatWidget') liveChatWidget: LiveChatWidgetModel;
liveChatWidget$: Subscription = new Subscription();
liveChatApi: LiveChatWidgetApiModel;
constructor() { }
ngOnInit(): void {
this.liveChatWidget$ = this.liveChatWidget.onChatLoaded.subscribe((api: LiveChatWidgetApiModel) => this.liveChatApi = api)
}
ngOnDestroy(): void {
this.liveChatWidget$.unsubscribe();
}
}
FAQs
Angular component to integrate LiveChat with your single-page app
We found that @livechat/angular-widget demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 46 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.