xmlrpc-lite
0.2.0 • Public • Published xmlrpc-lite

Simple xmlrpc client for node and browser
- Object params support via
<struct>
- String type support only
Installation
npm install xmlrpc-lite --save
Example
var Client = require('xmlrpc-lite');
var t = new Client('http://forum/interface/board/index.php');
t.call(
'loginUser',
{
id: 'xxxx',
api_module: 'ipb',
api_key: 'xxxxxx'
},
function(err, xml) {
if (err) throw err;
console.log(xml);
}
);
License
ISC
Package Sidebar
Install
Weekly Downloads