You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{ApplicationClient,ApplicationConfig}from'@wiotp/sdk';letappConfig=ApplicationConfig.parseEnvVars();letappClient=newApplicationClient(appConfig);appClient.connect();// Do stuffappClient.disconnect();
Device
import{DeviceClient,DeviceConfig}from'@wiotp/sdk';letdeviceConfig=DeviceConfig.parseEnvVars();letdeviceClient=newDeviceClient(deviceConfig);deviceClient.connect();// Do stuffdeviceClient.disconnect();
Gateway
import{GatewayClient,GatewayConfig}from'@wiotp/sdk';letgwConfig=GatewayConfig.parseEnvVars();letgwClient=newGatewayClient(gwConfig);gwClient.connect();// Do stuffgwClient.disconnect();
Development
Build
npm i
npm run build
Publish
npm login
npm publish .
About
Client libraries and samples for connecting to IBM Maximo IoT Tool using nodejs