Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

segmentio-commonjs-client

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

segmentio-commonjs-client

A client for SegmentIO using CommmonJS

  • 0.0.8
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

segmentio-commonjs-client

A npm-based client for SegmentIO that is expected to be used client-side via CommonJS. For server-side, look to analytics-node which supports buffering. This project exists because while analytics-node can be used client-side, doing so has some downsides:

  • results in big payload because need NodeJS buffer implementation for browsers
  • leaks lodash to window._ (reported as an issue so may change)

Basic overview

To create an instance of the client pass the SegmentIO write key:

var Analytics = require('segmentio-commonjs-client');

var client = new Analytics('my_segment_write_key');

identify

SegmentIO identify event:

client.identify({
  userId: 'abc123',
  traits: {
    email: 'bob@example.com',
    age: 42
  }
});

track

SegmentIO track event:

client.track({
  userId: 'abc123',
  event: 'MyEvent',
  properties: {
    arbitraryKey: 'someValue'
  }
});

setLoggingOnly

The client has a setLoggingOnly() function that can be called to disable actually interacting with the SegmentIO API -- instead the calls are logged to the console. This is useful when in non-production model.

status

Early stage but working and in production use. PRs and issues welcomed!

License

MIT

FAQs

Package last updated on 07 Nov 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc