Package Exports
- node-amplitude
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-amplitude) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-amplitude 
NODE SDK for Amplitude APIs
Usage
'use strict';
var Amplitude = require('node-amplitude');
var amplitude = new Amplitude({
key: AMPLITUDE_API_KEY,
secret: AMPLITUDE_API_SECRET
});
var params = {
start: '2012-05-01T02',
end: '2012-05-02T03'
};
amplitude.export.export(params, function(err, res) {
// handle err and response
...
});