JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q15134F
  • License MIT

Datasnap nodejs REST api wrapper. API reference http://docs.datasnapio.apiary.io/

Package Exports

  • datasnap

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 (datasnap) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Datasnap Nodejs Driver

A small wrapper of the Datasnap REST api to make logging events easier.

Installation

npm install datasnap --save

Usage

var options = {
    auth_header : 'base64_encoded_auth_header',
    organization_ids: [
        "org1"
    ],
    project_ids: [
        "proj1"
    ]
}
var datasnap = require('datasnap')(options);
datasnap.trackEvent({event_type:'some_event_type'});

Release History

  • 0.1.0 Initial release