This library provides many of the features in the official JavaScript mixpanel library. It is easy to use, and fully async. It is intended to be used on the server (it is not a client module). The in-browser client library is available at https://github.com/mixpanel/mixpanel-js.
npm install mixpanel
// grab the Mixpanel factoryvarMixpanel=require('mixpanel');// create an instance of the mixpanel clientvarmixpanel=Mixpanel.init('6fd9434dba686db2d1ab66b4462a3a67');// track an event with optional propertiesmixpanel.track('my event',{distinct_id: 'some unique client id',as: 'many',properties: 'as',you: 'want'});mixpanel.track('played_game');// create or update a user in Mixpanel Engagemixpanel.people.set('billybob',{$first_name: 'Billy',$last_name: 'Bob',$created: (newDate('jan 1 2013')).toISOString(),plan: 'premium',games_played: 1,points: 0});// create or update a user in Mixpanel Engage without altering $last_seen// - pass option `$ignore_time: true` to prevent the $last_seen property from being updatedmixpanel.people.set('billybob',{plan: 'premium',games_played: 1},{$ignore_time: true});// set a single property on a usermixpanel.people.set('billybob','plan','free');// increment a numeric propertymixpanel.people.increment('billybob','games_played');// increment a numeric property by a different amountmixpanel.people.increment('billybob','points',15);// increment multiple propertiesmixpanel.people.increment('billybob',{'points': 10,'games_played': 1});// append value to a listmixpanel.people.append('billybob','awards','Great Player');// append multiple values to a listmixpanel.people.append('billybob',{'awards': 'Great Player','levels_finished': 'Level 4'});// merge value to a list (ignoring duplicates)mixpanel.people.union('billybob',{'browsers': 'ie'});// merge multiple values to a list (ignoring duplicates)mixpanel.people.union('billybob',{'browsers': ['ie','chrome']});// record a transaction for revenue analyticsmixpanel.people.track_charge('billybob',39.99);// clear a users transaction historymixpanel.people.clear_charges('billybob');// delete a usermixpanel.people.delete_user('billybob');// Create an alias for an existing distinct idmixpanel.alias('distinct_id','your_alias');// all functions that send data to mixpanel take an optional// callback as the last argumentmixpanel.track('test',function(err){if(err)throwerr;});// import an old eventvarmixpanel_importer=Mixpanel.init('valid mixpanel token',{key: 'valid api key for project'});// needs to be in the system once for it to show up in the interfacemixpanel_importer.track('old event',{gender: ''});mixpanel_importer.import('old event',newDate(2012,4,20,12,34,56),{distinct_id: 'billybob',gender: 'male'});// import multiple events at oncemixpanel_importer.import_batch([{event: 'old event',properties: {time: newDate(2012,4,20,12,34,56),distinct_id: 'billybob',gender: 'male'}},{event: 'another old event',properties: {time: newDate(2012,4,21,11,33,55),distinct_id: 'billybob',color: 'red'}}]);Where is mixpanel.identify()?
mixpanel-node is a server-side library, optimized for stateless shared usage; e.g.,
in a web application, the same mixpanel instance is used across requests for all users.
Rather than setting a distinct_id through identify() calls like Mixpanel client-side
libraries (where a single Mixpanel instance is tied to a single user), this library
requires you to pass the distinct_id with every tracking call. See
mixpanel#13.
How do I get or set superproperties?
See the previous answer: the library does not maintain user state internally and so has no concept of superproperties for individual users. If you wish to preserve properties for users between requests, you will need to load these properties from a source specific to your app (e.g., your session store or database) and pass them explicitly with each tracking call.
# in the mixpanel directory
npm install
npm test
Heavily inspired by the original js library copyright Mixpanel, Inc. (http://mixpanel.com/)
Copyright (c) 2014-15 Mixpanel Original Library Copyright (c) 2012-14 Carl Sverre
Contributions from:
- Andres Gottlieb
- Ken Perkins
- Nathan Rajlich
- Thomas Watson Steen
- Gabor Ratky
- wwlinx
- PierrickP
- lukapril
- sandinmyjoints
- Jyrki Laurila
- Zeevl
- Tobias Baunbæk
- Eduardo Sorribas
- Nick Chang
- Michael G
- Tejas Manohar
- Eelke Boezeman
Released under the MIT license. See file called LICENSE for more details.