
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
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 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 correctly formatted data back via a promise, callback or stream.
Node:
var MixpanelExport = require('mixpanel-data-export');
Browser:
<script src="https://npmcdn.com/mixpanel-data-export@2.0.1/dist/mixpanel_data_export.min.js"></script>
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...
Annotations:
annotations(parameters)
createAnnotation(parameters)
updateAnnotation(parameters)
deleteAnnotation(parameters)
Export:
export(parameters)
(node only, see: https://github.com/michaelcarter/mixpanel-data-export-js/issues/3)Events:
events(parameters)
topEvents(parameters)
eventNames(parameters)
Event Properties:
eventProperties(parameters)
topEventProperties(parameters)
eventPropertyValues(parameters)
Funnels:
funnels(parameters)
listFunnels(parameters)
Segmentation:
segmentation(parameters)
numericSegmentation(parameters)
sumSegmentation(parameters)
averageSegmentation(parameters)
Retention:
retention(parameters)
addiction(parameters)
People Analytics:
engage(parameters)
(node only, see: https://github.com/michaelcarter/mixpanel-data-export-js/issues/6)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:
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.
For any other requests (e.g. undocumented API endpoints), you can make raw requests to the API using get
. The library will still handle all of param ordering and md5 signature stuff that the API requires, so you'll just need to supply a request type & parameters:
panel.get(requestType, parameters)
requestType
expects an array forming a path to the endpoint. Taking the "top events" endpoint as an example - it's available at http://mixpanel.com/api/2.0/events/top/
, so to request it you'd call panel.get(['events', 'top'], parameters)
.
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 1,317 weekly downloads. As such, mixpanel-data-export popularity was classified as 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.