$ npm install git+https://github.com/panoplyio/color-sdk-nodejs.git
var color = require( "color-sdk-nodejs" );
var conn = new color.SDK( "APIKEY", "APISECRET" );
conn.write( "install", { user: "123", device: "iPad", user_ip: "1.2.3.4" } )
The SDK
class extends Node's EventEmitter class. Therefor, it may emit "error" events that you should catch and handle.
Opens the socket connection to the Color server.
Immediately writes an arbitrary object to the Color database.
- type is a string representing the event type or collection of the object
- obj is a simple javascript object. Do not use non-primitive data types.