@striven-erp/reportbuilder-js
Version:
A node.js Client for aggregating the Striven Report Builder
10 lines (7 loc) • 308 B
JavaScript
const reportbuilder = require('@striven-erp/reportbuilder-js');
async function startRb() {
const rb = await reportbuilder(
'https://api.test.striven.com/v2/custom-report/ea014330b4654400a9bd2b94fbf70e583def90e78f6647d483c6a817892ca0bf',
);
rb.toJson('customers').then(res => console.log(res));
}