Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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 (self-hosted):
<script src="your/path/to/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:
export(parameters)
(node only, see: https://github.com/michaelcarter/mixpanel-data-export-js/issues/3)exportStream(parameters)
(node only, please see: Streaming Exports)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)
get(requestType, parameters)
(Make custom calls to the API for undocumented API methods, e.g: https://github.com/michaelcarter/mixpanel-data-export-js/pull/13)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.
Due to the large size of an export response, it's often appropriate to stream the data instead of waiting for it all:
// Create a stream object
var exportStream = panel.exportStream({
from_date: "2015-03-01",
to_date: "2015-03-02"
});
// Listen on stream data
exportStream.on('data', function(data) {
// do something with it
});
// Listen for a stream error
exportStream.on('error', function(err) {
// handle error
});
// Listen for the end of the stream
exportStream.on('end', function() {
// move on to do other stuff
});
// Pause the stream
exportStream.pause()
// Resume the stream
exportStream.resume()
Please note this option is not available in node environments, it's not supported in browser.
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 456 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.