@cellaware/moca-client
v1.0.0
Published
MOCA Client for Node.js
Downloads
48
Readme
node-moca-client
MOCA Client for Node.js
Example usage:
const conn = new MocaConnection('http://localhost:4600/service', 'SUPER', 'SUPER');
await conn.login();
const res = await conn.executeCommand(`list warehouses`);
if (res.eOk()) {
console.log(res.results.toJsonStr());
}
await conn.logout();