
Security News
152 Chrome Live Wallpaper Extensions Hid Ad Tracking and Faked Google Search Traffic
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.
@snugdesk/avaya-ipo-widget
Advanced tools
A reusable Angular widget for integrating Avaya IP Office calling features into Angular applications. This library includes support for international phone input, number validation, and Avaya IPO-based softphone interactions using cloud-hosted SDK scripts.
To purchase licenses or for assistance with implementing the softphone in your Angular web application, please contact:
SNUG Technologies Pvt Ltd
📧 sales@snug.in
npm install @angular/material @angular/animations
npm install google-libphonenumber intl-tel-input ngx-intl-tel-input
npm install @snugdesk/avaya-ipo-widget
Update your main.ts file depending on your Angular version.
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { importProvidersFrom } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
bootstrapApplication(AppComponent, {
providers: [importProvidersFrom(HttpClientModule)]
});
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { provideHttpClient } from '@angular/common/http';
import { provideAnimations } from '@angular/platform-browser/animations';
bootstrapApplication(AppComponent, {
providers: [
provideAnimations(),
provideHttpClient()
]
});
Include the following in the styles section of your angular.json to ensure proper styling of the phone input:
"styles": [
"./node_modules/intl-tel-input/build/css/intlTelInput.css",
"src/styles.css"
]
AppModule)Add HttpClientModule in your AppModule:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
HttpClientModule
],
bootstrap: [AppComponent]
})
export class AppModule {}
ngx-intl-tel-input and google-libphonenumber under the hoodAvaya IPO login screen:
Softphone dialer in action:
For licensing inquiries, new feature requests, or implementation support to embed the Avaya IPO softphone (WebRTC) in your web-based application, please contact:
SNUG Technologies Pvt Ltd
📧 sales@snug.in
FAQs
Snugdesk - Avaya IPO widget for Angular
The npm package @snugdesk/avaya-ipo-widget receives a total of 191 weekly downloads. As such, @snugdesk/avaya-ipo-widget popularity was classified as not popular.
We found that @snugdesk/avaya-ipo-widget 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
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.