TRobot FDC client module for nodejs.
$ npm install @things-factory/node-casscale --saveRun the examples from the examples directory.
const { TRobotFdcClient } = require('@things-factory/node-casscale')
const { sleep } = require('../build/utils')
;(async function () {
  var client = new TRobotFdcClient('localhost', 8000)
  await client.connect()
  console.log('connected')
  await sleep(1000)
  let resp = await client.getActq()
  console.log('ACTQ: ', resp)
  await sleep(1000)
  resp = await client.getAptq()
  console.log('APTQ: ', resp)
  await sleep(1000)
  resp = await client.getActm()
  console.log('ACTM: ', resp)
  await sleep(1000)
  resp = await client.getApos()
  console.log('APOS: ', resp)
  await sleep(1000)
  client.disconnect()
  console.log('disconnected')
})()...
npm test.