Package Exports
- ng-intercom
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ng-intercom) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Angular Intercom
This is an Intercom wrapper for Angular 2+ with dependency injection for universal applications.
It supports all intercom methods.
ALPHA VERSION
If you want to try the latest features, please see the 1.0.0-alpha branch.
Installation
This package is on NPM, so just run
$ npm install ng-intercom@beta --saveConfiguration
- Import
IntercomModuletoapp.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 yourindex.html.
import { IntercomModule } from 'ng-intercom';
import { AppComponent } from './app';
@NgModule({
imports: [
IntercomModule.forRoot(YOUR_APP_ID)
]
})
export class AppModule{}- Use in your components/directives/whatever you want!
// App
...
import { Intercom } from 'ng-intercom';
@Component({
selector: 'app',
template: `...`
})
export class AppComponent implements OnInit {
constructor(
public intercom: Intercom
){}
ngOnInit() {
this.intercom.init({
app_id: <app_id>,
// Supports all optional configuration.
widget: {
"activator": "#intercom"
}
});
}
}Development
To compile, just run npm run build. It will compile into the dist directory.
Credits
Made by Scott Wyatt and Wilson Hobbs in 2017.