filum-node

The hassle-free way to integrate analytics into any Node.js application


Keywords
analytics, stats, client, driver
License
MIT
Install
npm install filum-node@4.0.1

Documentation

analytics-node

A Node.js client for Filum

Installation

$ npm install --save filum-node-sdk

Usage

const Analytics = require('filum-node-sdk');

const client = new Analytics('write key');

client.track({
  user_id: 'User ID Example',
  event_name: 'Item Purchased',
  event_params: {
      name: "Testing item",
      stock: 10,
      price: 11.5
  }
});

You can refer to the example repo here

License

Released under the MIT license.