backandsdk

0.1.7 • Public • Published

Node.Js sdk for Backand

NodeJS module to allow use of BackAnd Apis

Allow users to perform authentification and simple action over Backand

Instructions

npm install

Example

var BackandSdk = require("backandsdk/backand");
var backand = new BackandSdk();

// anonymous authetication
backand.anoymousAuth('08fd510a-4b52-43fa-938f-f2c841bd3106')
    .then(function(){
        backand.get('/1/objects/todo?pageSize=1&pageNumber=1').then(function(data){
            console.log('anoymousAuth Data: ',data);
        });
    });


// authentication with user and password
backand.auth({ username:'test@angular2.com', password:'angular2', appname:'angular2' })
    .then(function(){
        backand.get('/1/objects/todo?pageSize=1&pageNumber=1').then(function(data){
            console.log('auth Data: ',data);
        });
    });

Readme

Keywords

none

Package Sidebar

Install

npm i backandsdk

Weekly Downloads

19

Version

0.1.7

License

none

Last publish

Collaborators

  • matt.billock
  • itayher
  • kornatzky
  • ygalbel