IoT device manager for HOOPS
npm install hc-iotframework-iotservicemanagerTo use this service manager, first create a configuration object. This manager supports 3 platforms: Azure Digital Twins, AWS TwinMaker, and Static Jason for testing. They all have different parameters in the configuration object.
```
{
"platform": "local"
}
``
{
"platform": "azure",
"dtHost": "https://
"dataClusterName": "
"dbName": "
"tableName": "
}
Then, simply install this package from npm:
``
npm install hc-iotframework-iotservicemanager
Here is an example to use the manager in your code:
`Javascript
const mng = require("hc-iotframework-iotservicemanager");
const config = {
platform: "local"
};
const app = mng(3000, config);
``