IoTize Device Communication protocol for Web Socket
html
`
$3
`bash
npm install @iotize/device-com-websocket.js
`
Usage
`javascript
// Library name: IoTizeDeviceComWebsocket
let websocketProtocol = IoTizeDeviceComWebsocket.WebSocketProtocol({
url: 'tcp://localhost:2000' // Server url
});
// ...
`
$3
Typings are provided with the library.
`typescript
import { WebSocketProtocol } from '@iotize/device-com-websocket.js';
// ...
``