Socket
Socket
Sign inDemoInstall

@customerio/cdp-analytics-node

Package Overview
Dependencies
16
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @customerio/cdp-analytics-node

Customer.io Data Pipelines analytics client for Node.js.


Version published
Weekly downloads
6.6K
decreased by-0.26%
Maintainers
2
Install size
1.22 MB
Created
Weekly downloads
 

Readme

Source

Customer.io Data Pipelines analytics client for Node.js.

Installation

npm install @customerio/cdp-analytics-node

Usage

import { Analytics } from '@customerio/cdp-analytics-node'

// instantiation
const analytics = new Analytics({ writeKey: '<MY_WRITE_KEY>' });

analytics.identify({
  userId: '4'
});

Other Regions

If you're using a different data center such as our EU region, you can specify an alternate endpoint:

import { Analytics } from '@customerio/cdp-analytics-node'

// instantiation
const analytics = new Analytics({
  host: 'https://cdp-eu.customer.io',
  writeKey: '<MY_WRITE_KEY>'
});

analytics.identify({
  userId: '4'
});

Documentation

The links below contain more detailed documentation on how to use this library:

FAQs

Last updated on 25 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc