0.0.6 • Published 8 years ago

ivivacloud-node v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

ivivacloud-node

A node.js helper library for accessing iVivaCloud

Getting Started

You need to have access to an iVivaCloud installation and have a valid api key.

Installation

npm install ivivacloud-node

Usage

var iviva = require('ivivacloud-node');
var account = new iviva.Account('http://ivivacloud-url','apikey');

/* A sample service to execute */
account.executeService('System.AvailableDateFormats',{},function(err,data){
    if (err != null) {
        console.log('Received data:'  + data);
    }
});

var mb = new iviva.MessageBus(account);
mb.init(function(){
    mb.subscribe('test',function(channel,message){
        console.log('received test message:' + message);
    });
});
0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago