Library to use HutkiGrosh API to ERIP in nodejs.
$ npm install --save node-erip-hgrosh
var HGrosh = require('node-erip-hgrosh');
var credential = {
user:"[email protected]",
pwd:"pSSw_ord7",
production: true
};
var hgrosh = new HGrosh(credential);
Setting production to false will direct your requests to trial.hgrosh.by instead of www.hutkigrosh.by.
If your system requires that requests be made through an HTTP or HTTPS proxy, you can either set an environment variables https_proxy and http_proxy, or pass in the optional third option:
var hgrosh = new HGrosh(credential, {proxy: http_proxy});
HGrosh API | Function |
---|---|
Security/logIn | HGrosh.logIn(credential) |
Security/logOut | HGrosh.logOut() |
Invoicing/Bill | HGrosh.addBill(bill) |
Invoicing/Bill(billId) | HGrosh.infoBill(billId) |
Invoicing/Bills | HGrosh.loadBills(start, end, sortby) |
You could use promises or callback functions to chain your requests to HutkiGrosh. Unfortunately there are problems with concurrent requests on their side.
var hgrosh = new HGrosh(credential);
hgrosh.addBill(bill)
.then(function(result)
{
hgrosh.loadBills(0,30,1).
then(function(result)
{
var json = JSON.parse(result.body);
console.log(json);
});
});
var hgrosh = new HGrosh(credential);
hgrosh.addBill(bill,
function(err, result)
{
hgrosh.loadBills(0,30,1,
function(err, result)
{
var json = JSON.parse(result);
console.log(json);
});
});
$ npm install --global node-erip-hgrosh
$ node-erip-hgrosh --help
# creates a browser.js
$ npm run browser
MIT © Egor Kuryanovich