Socket
Socket
Sign inDemoInstall

posthog-node

Package Overview
Dependencies
16
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    posthog-node

PostHog Node.js integration


Version published
Weekly downloads
266K
decreased by-10.94%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

PostHog NodeJS

Official PostHog NodeJS library to capture and send events to any PostHog instance (including posthog.com).

This library uses an internal queue to make calls non-blocking and fast. It also batches requests and flushes asynchronously, making it perfect to use in any part of your web app or other server side application that needs performance.

Installation

Run either the yarn or npm program to add it to your project

npm install posthog-ruby
yarn add posthog-ruby

In your app, set your api key before making any calls.

import PostHog from 'posthog-node'

const client = new PostHog('API key')

You can find your key in the /setup page in PostHog.

Making calls

Capture

Capture allows you to capture anything a user does within your system, which you can later use in PostHog to find patterns in usage, work out which features to improve or where people are giving up.

A capture call requires

  • distinct id which uniquely identifies your user
  • event name to make sure
    • We recommend using [verb] [noun], like movie played or movie updated to easily identify what your events mean later on.

Optionally you can submit

  • properties, which can be a dict with any information you'd like to add

For example:

client.capture({
  distinctId: 'distinct id',
  event: 'movie played',
  properties: {
    movieId: '123',
    category: 'romcom'
  }
})

Identify

Identify lets you add metadata on your users so you can more easily identify who they are in PostHog, and even do things like segment users by these properties.

An identify call requires

  • distinct id which uniquely identifies your user
  • properties with a dict with any key: value pairs

For example:

client.identify({
  distinctId: "user:123",
  properties: {
    email: 'john@doe.com',
    proUser: false
  }
})

The most obvious place to make this call is whenever a user signs up, or when they update their information.

Alias

To marry up whatever a user does before they sign up or log in with what they do after you need to make an alias call. This will allow you to answer questions like "Which marketing channels leads to users churning after a month?" or "What do users do on our website before signing up?"

In a purely back-end implementation, this means whenever an anonymous user does something, you'll want to send a session ID with the capture call. Then, when that users signs up, you want to do an alias call with the session ID and the newly created user ID.

The same concept applies for when a user logs in.

If you're using PostHog in the front-end and back-end, doing the identify call in the frontend will be enough.

An alias call requires

  • distinct id the current unique id
  • alias the unique ID of the user before

For example:

client.alias({
  distinctId: "user:123",
  alias: "user:12345",
})

Development

How to release

  1. Run "npm version patch" (or minor/major)
  2. Run "npm publish"

Thank you

This library is largely based on the analytics-node package.

Keywords

FAQs

Last updated on 20 Feb 2020

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc