Socket
Socket
Sign inDemoInstall

dsokal-rudder-sdk-node

Package Overview
Dependencies
34
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dsokal-rudder-sdk-node

Compact fork of rudder-node-sdk


Version published
Weekly downloads
1
Maintainers
1
Install size
1.31 MB
Created
Weekly downloads
 

Readme

Source

@expo/rudder-sdk-node CI

A lightweight Node SDK for RudderStack with minimal dependencies. This is designed for client-side Node applications like CLIs. This library is smaller than RudderStack's Node library and doesn't include support for the Redis persistence queue.

It is fully written in TypeScript and exports first-class type declarations to users of this package.

Installation

$ npm install @expo/rudder-sdk-node

Usage

import Analytics from '@expo/rudder-sdk-node';

// Specify the batch endpoint of the Rudder server you are running
const client = new Analytics('write key', '<data-plane-uri>/v1/batch');

client.track({
  event: 'event name',
  userId: 'user id',
});

const flushResponse = await client.flush();

Documentation

Look at the TypeScript type declarations and the source code of this library.

RudderStack's documentation for a different but related library is available here.

Keywords

FAQs

Last updated on 10 Sep 2021

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