
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@herdwatch-apps/ngx-intercom
Advanced tools
[](https://www.npmjs.com/package/@herdwatch-apps/ngx-intercom) [](https://www.npmjs.com/@herdwatch-apps/ngx-intercom
This is an Intercom wrapper for Angular 2+ which supports AoT and SSR.
It intends to support all documented intercom methods and PRs for functionality is greatly appreciated.
master
is now hosting the latest stable version of @herdwatch-apps/ngx-intercom
.
If you find issues with this version, please file an issue as soon as possible so we can take a look at it. We appreciate your cooperation!
This package is on NPM, so just run
$ npm install @herdwatch-apps/ngx-intercom@latest
IntercomModule
to app.module.ts
. The module will automatically include the APP_ID instantiation, so you DO NOT need to copy the install script from Intercom and place it in your index.html
.import { IntercomModule } from '@herdwatch-apps/ngx-intercom';
@NgModule({
imports: [
...
IntercomModule.forRoot({
appId: <your_app_id>, // from your Intercom config
updateOnRouterChange: true // will automatically run `update` on router event changes. Default: `false`
})
...
]
})
export class AppModule { }
// App
import { Component, OnInit } from '@angular/core';
import { Intercom } from '@herdwatch-apps/ngx-intercom';
@Component({
selector: 'app',
template: `...`
})
export class AppComponent implements OnInit {
constructor(
public intercom: Intercom
){}
ngOnInit() {
this.intercom.boot({
app_id: <app_id>, // Please, pass your APP_ID here in case you don't use IntercomConfig
// Supports all optional configuration.
widget: {
"activator": "#intercom"
}
});
}
}
To run live testing: ng test
To run tests: npm test
To run distribution: npm run build:dist
To publish npm run build:dist && npm publish ./dist
Maintained by Scott Wyatt and Wilson Hobbs in 2017 with contributions from Florian Reifschneider, Devon Sams, Humberto Rocha, and Luca GOUTY
FAQs
[](https://www.npmjs.com/package/@herdwatch-apps/ngx-intercom) [](https://www.npmjs.com/@herdwatch-apps/ngx-intercom
The npm package @herdwatch-apps/ngx-intercom receives a total of 0 weekly downloads. As such, @herdwatch-apps/ngx-intercom popularity was classified as not popular.
We found that @herdwatch-apps/ngx-intercom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.