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

mixpanel-data-export

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mixpanel-data-export

A wrapper for Mixpanel's data export API. Simply instantiate the class with your API secret and key and then make calls to api methods and get json back.

  • 1.6.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
150
decreased by-71.1%
Maintainers
1
Weekly downloads
 
Created
Source

Mixpanel Data Export (v 1.6.0)

Introduction

Simply put, this is a JavaScript library that makes Mixpanel's data export API easy to use. Simply instantiate the class with your API secret and key and then make calls to api methods and get data back via a promise or callback.

Browser Installation

You'll have to host the library yourself, so:

<script src="your/path/to/mixpanel_data_export.min.js"></script>

NPM Installation

Do

npm install mixpanel-data-export --save

then

var MixpanelExport = require('mixpanel-data-export');

General Usage Instructions

Every method detailed on mixpanel's data export api page is available in the library. However, some of the namings have been adjusted to read more semantically, for example, topEventProperties , and eventPropertyValues.

The full list of methods is as follows:

  • export(parameters) (node only, see: https://github.com/michaelcarter/mixpanel-data-export-js/issues/3)
  • engage(parameters) (node only, see: https://github.com/michaelcarter/mixpanel-data-export-js/issues/6)
  • annotations(parameters)
  • createAnnotation(parameters)
  • updateAnnotation(parameters)
  • events(parameters)
  • topEvents(parameters)
  • eventNames(parameters)
  • eventProperties(parameters)
  • topEventProperties(parameters)
  • eventPropertyValues(parameters)
  • funnels(parameters)
  • listFunnels(parameters)
  • segmentation(parameters)
  • numericSegmentation(parameters)
  • sumSegmentation(parameters)
  • averageSegmentation(parameters)
  • retention(parameters)
  • addiction(parameters)

An example usage might be:

panel = new MixpanelExport({
  api_key: "my_api_key",
  api_secret: "my_api_secret"
});

panel.retention({
  from_date: "2014-02-28",
  to_date: "2014-03-10",
  born_event: "Rendering items"
}).then(function(data) {
  console.log(data);
});

Callbacks are also supported:

panel = new MixpanelExport({
  api_key: "my_api_key",
  api_secret: "my_api_secret"
});

result = panel.retention({
  from_date: "2014-02-28",
  to_date: "2014-03-10",
  born_event: "Rendering items"
}, function(data) {
  console.log(data);
});

A full list of available API methods is detailed on mixpanel's data export api page. If you find any that are missing please let me know, or better yet put in a pull request.

Keywords

FAQs

Package last updated on 13 Feb 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