Intercom integration for 'analytics' module for browser & node
npm install @analytics/intercomanalyticsIntegration with intercom for analytics
For more information see the docs.
Click to expand
- Installation
- How to use
- Platforms Supported
- Browser usage
- Browser API
- Configuration options for browser
- Server-side usage
- Server-side API
- Configuration options for server-side
- Additional examples
- Custom browser methos
- actions
- hooks
- Browser Example
``bash`
npm install analytics
npm install @analytics/intercom
The @analytics/intercom package works in the browser and server-side in Node.js. To use, install the package, include in your project and initialize the plugin with analytics.
Below is an example of how to use the browser plugin.
`js
import Analytics from 'analytics'
import intercomPlugin from '@analytics/intercom'
const analytics = Analytics({
app: 'awesome-app',
plugins: [
intercomPlugin({
appId: '123-xyz'
})
]
})
/ Track a page view /
analytics.page()
/ Track a custom event /
analytics.track('cartCheckout', {
item: 'pink socks',
price: 20
})
/ Identify a visitor /
analytics.identify('user-id-xyz', {
firstName: 'bill',
lastName: 'murray'
})
`
After initializing analytics with the intercomPlugin plugin, data will be sent into Intercom whenever analytics.page, analytics.track, or analytics.identify are called.
See additional implementation examples for more details on using in your project.
The @analytics/intercom package works in the browser and server-side in Node.js
The Intercom client side browser plugin works with these analytic api methods:
- analytics.page - Sends page views into Intercom
- analytics.track - Track custom events and send to Intercom
- analytics.identify - Identify visitors and send details to Intercom
- analytics.reset - Reset browser storage cookies & localstorage for Intercom values
`js
import Analytics from 'analytics'
import intercomPlugin from '@analytics/intercom'
const analytics = Analytics({
app: 'awesome-app',
plugins: [
intercomPlugin({
appId: '123-xyz'
})
]
})
`
| Option | description |
|:---------------------------|:-----------|
| appId disableAnonymousTraffic
required - string| Your intercom app id |
| alignment
_optional_ - boolean| Disable loading intercom for anonymous visitors |
| horizontalPadding
_optional_ - string| Customize left or right position of messenger |
| verticalPadding
_optional_ - number| Customize horizontal padding |
| customLauncherSelector
_optional_ - number| Customize vertical padding |
|
_optional_ - string| Css selector of the custom launcher see https://www.intercom.com/help/en/articles/2894-customize-the-intercom-messenger-technical for additional info |
The Intercom server-side node.js plugin works with these analytic api methods:
- analytics.page - Sends page views into Intercom
- analytics.track - Track custom events and send to Intercom
- analytics.identify - Identify visitors and send details to Intercom
`js
import Analytics from 'analytics'
import intercomPlugin from '@analytics/intercom'
const analytics = Analytics({
app: 'awesome-app',
plugins: [
intercomPlugin({
appId: '123-xyz'
})
]
})
`
| Option | description |
|:---------------------------|:-----------|
| appId
required - string| Your Intercom app id |
Below are additional implementation examples.
Server-side ES6
`js
import Analytics from 'analytics'
import intercomPlugin from '@analytics/intercom'
const analytics = Analytics({
app: 'awesome-app',
plugins: [
intercomPlugin({
appId: '123-xyz'
})
// ...other plugins
]
})
/ Track a page view /
analytics.page()
/ Track a custom event /
analytics.track('cartCheckout', {
item: 'pink socks',
price: 20
})
/ Identify a visitor /
analytics.identify('user-id-xyz', {
firstName: 'bill',
lastName: 'murray'
})
`
Server-side Node.js with common JS
If using node, you will want to import the .default
`js
const analyticsLib = require('analytics').default
const intercomPlugin = require('@analytics/intercom').default
const analytics = analyticsLib({
app: 'my-app-name',
plugins: [
intercomPlugin({
appId: '123-xyz'
})
]
})
/ Track a page view /
analytics.page()
/ Track a custom event /
analytics.track('cartCheckout', {
item: 'pink socks',
price: 20
})
/ Identify a visitor /
analytics.identify('user-id-xyz', {
firstName: 'bill',
lastName: 'murray'
})
`
Using in HTML
Below is an example of importing via the unpkg CDN. Please note this will pull in the latest version of the package.
`html
....
`
Using in HTML via ES Modules
Using @analytics/intercom in ESM modules.
`html
....
`
This plugin exposes some custom intercom methods thanks to custom methods on plugins.
See reference api for additional information
startTour(tourId)shutdown()hide()show()showMessages()showNewMessage()
The following methods require a function as an argument
onShow(callback)onUnreadCountChange(callback)
`js
import Analytics from "analytics";
import intercomPlugin from "@analytics/intercom";
// Initialize analytics instance with plugins
const analytics = Analytics({
app: "your-app-name",
plugins: [
intercomPlugin({
appId: "123-xyz",
}),
],
});
// Usage:
// Now you can call intercom.startTour in your app like so
analytics.plugins.intercom.startTour("tourID");
// hook usage:
analytics.plugins.intercom.onShow(() => {
console.log("fires when intercom launcher is shown");
});
``