Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
mixpanel-data-export
Advanced tools
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.
Simply put, this is a JavaScript class 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 objects back. A NPM is also provided for noders.
The npm name for the library is mixpanel-data-export, and you can use it just as you would below, with the standard var MixpanelExport = require('mixpanel-data-export');
added at the beginning of your file.
Every method detailed on mixpanel's data export api page is available in the library. However, where the top
method is duplicated the method name has a specifier appended, so those are topProperties()
, and topEvents()
.
The full list of methods is as follows:
events(paramters)
top_events(paramters)
(synonymous to topEvents)topEvents(paramters)
names(paramters)
properties(parameters)
top_properties(parameters)
(synonymous to topProperties)topProperties(parameters)
values(parameters)
funnels(parameters)
list(parameters)
segmentation(parameters)
numeric(parameters)
sum(paramters)
average(parameters)
retention(parameters)
engage(parameters)
An example usage might be:
panel = new MixpanelExport({
api_key: "my_api_key",
api_secret: "my_api_secret"
});
result = panel.retention({
from_date: "2013-06-13",
to_date: "2013-06-29",
born_event: "Rendering items"
});
result.done(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.
Currently, this requires the following libraries:
FAQs
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.
The npm package mixpanel-data-export receives a total of 287 weekly downloads. As such, mixpanel-data-export popularity was classified as not popular.
We found that mixpanel-data-export demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.