0.0.3 • Published 7 years ago

paas-node-sdk v0.0.3

Weekly downloads
3
License
ISC
Repository
-
Last release
7 years ago

##instruction

This is a NODE SDK of changlian PAAS communication platform,more versions please access website http://paas.ucc360.com

##Installation

npm install paas-node-sdk

##use case

 var Main = require('paas-node-sdk');
 var params = {...};
 Main.PaasBlackNum.getBlackNums(params)
    .then(function (result) {
        ...
     }, function (err) {
         if (err instanceof Result){
            ...
         }else {
            ...
         }
     })