Developing the Node.js thing app

Now, we will set up the app and write the required code:

  1. From the Terminal, once you are inside the IBM-IoT-Device folder, run the following:
$ npm init -y
  1. Next, we will install the ibmiotf module (https://www.npmjs.com/package/ibmiotf) from npm. Run the following:
$ npm install ibmiotf --save
  1. Next, we will install rpi-dht-sensor (https://www.npmjs.com/package/rpi-dht-sensor) from npm. This module will help in reading the DHT11 temperature and humidity values:
$ npm install rpi-dht-sensor --save
  1. Your final package.json file should look like this:
{  "name": "IBM-IoT-Device",  "version": "1.0.0",  "description": "",  "main": "index.js",  "scripts": {    "test": "echo "Error: no test specified" && exit 1" }, ...

Get Enterprise Internet of Things Handbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.