azure-iot-device-http
TypeScript icon, indicating that this package has built-in type declarations

1.14.3 • Public • Published

#azure-iot-device-http Communicate with Azure IoT Hub from any device over HTTP 1.1.

npm version

Install

npm install -g azure-iot-device-http@latest to get the latest (pre-release) version.

Getting Started

Create a device client:

var clientFromConnectionString = require('azure-iot-device-http').clientFromConnectionString;
var Message = require('azure-iot-device').Message;

var connectionString = '[IoT Hub device connection string]';

var client = clientFromConnectionString(connectionString);

Create a callback that sends a message and receives messages. When it receives a message it sends an acknowledgement receipt to the server:

var connectCallback = function (err) {
  if (err) {
    console.error('Could not connect: ' + err);
  } else {
    console.log('Client connected');
    var message = new Message('some data from my device');
    client.sendEvent(message, function (err) {
      if (err) console.log(err.toString());
    });

    client.on('message', function (msg) { 
      console.log(msg); 
      client.complete(msg, function () {
        console.log('completed');
      });
    }); 
  }
};

Open the connection and invoke the callback:

client.open(connectCallback);

Readme

Keywords

none

Package Sidebar

Install

npm i azure-iot-device-http

Weekly Downloads

492

Version

1.14.3

License

MIT

Unpacked Size

65.1 kB

Total Files

10

Last publish

Collaborators

  • windowsazure
  • bertkleewein
  • anthonyvercolano
  • azure-sdk
  • jebrando
  • vishnureddy17