Philips Hue API Library for Node.js
npm install node-hue-api
An API library for Node.js that interacts with the Philips Hue Bridge to control Lights, schedules, sensors and the
various other features of the Hue Bridge.
This library abstracts away the actual Philips Hue Bridge REST API and provides all of the features of the Philips API
and a number of useful functions to control/configure its various features.
The library fully supports local network and remote internet access to the Hue Bridge API and has 100% coverage of the
documented Hue API.
Node.js using npm:
```
$ npm install node-hue-api
Node.js using yarn:
``
$ yarn add node-hue-api
The V3 API is written to support JavaScript native Promises, as such you can use standard Promise chaining with then() catch()
and or utilize synchronous async and await in your own code base.
As of release 4.0.0 in December 2019, the library now has complete coverage for the Hue REST API.
The Bridge certificate is self-signed, so this will cause issues when validating it normally. The library will process
the certificate, validate the issuer and the subject and if happy will then allow the connection over TLS with the Hue
Bridge.
When using the remote API functionality of the library, the certificate is validated normally as the https://api.meethue.com
site has an externally valid certificate and CA chain.
_Note: There is an option to connect over HTTP using createInsecureLocal() as there are some instances of use of the console
library against software the pretends to be a Hue Bridge. Using this method to connect will output warnings on the
that you are connecting in an insecure way_.
* For the whole library, API calls are limited to 12 per second
* For lights.setLightState(), API calls are limited to 10 per secondgroups.setState()
* For , API calls are limited to 1 per second
These defaults are not currently configurable, but have been implemented to conform to the best practices defined in the
Hue API documentation. If you are facing issues with this, then raise a support ticket via an Issue.
_Note: these do NOT (and cannot) take into account all access to the Hue Bridge, so if you have other softare that also
accesses the bridge, it is still possible to overload it with requests._
To do this, you need to define an environment variable of NODE_DEBUG and ensure that it is set to a string that node-hue-api
contains in it.
Once the debug mode is active you will see output like the following on the console:
`
Bridge Certificate:
subject: {"C":"NL","O":"Philips Hue","CN":"xxxxxxxxx"}
issuer: {"C":"NL","O":"Philips Hue","CN":"xxxxxxxxx"}
valid from: Jan 1 00:00:00 2017 GMT
valid to: Jan 1 00:00:00 2038 GMT
serial number: xxxxxxx
Performing validation of bridgeId "xxx" against certifcate subject "xxx"; matched? true
URL Placeholders:
username: { type:string, optional:false, defaultValue:null }
Headers: {"Accept":"application/json"}
{
"method": "get",
"baseURL": "https://192.xxx.xxx.xxx:443/api",
"url": "/xxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
URL Placeholders:
username: { type:string, optional:false, defaultValue:null }
Headers: {"Accept":"application/json","Content-Type":"application/json"}
{
"method": "post",
"baseURL": "https://192.xxx.xxx.xxx:443/api",
"url": "/xxxxxxxxxxxxxxxxxxxxxxxx/schedules",
"data": {
"name": "Test Schedule Recurring",
"description": "A node-hue-api test schedule that can be removed",
"command": {
"address": "/api/xxxxxxxxxxxxxxxxxxxxxxxxxx/lights/0/state",
"method": "PUT",
"body": {
"on": true
}
},
"localtime": "W124/T12:00:00",
"status": "enabled",
"recycle": true
}
}
`
_Note: You should be careful as to who can gain access to this output as it will contain sensative data including the
MAC Address of the bridge, IP Address and username values._
The above warning applies here with respect to schedule when not in debug mode, as the schedule endpoints will contain the
username value (that can be used to authenticate against the bridge) in the payloads of the command.
What was provided in the 3.x versions of this library to provide some backward comaptibility has now been moved into
another library node-hue-api-v2-shim.
_The node-hue-api-v2-shim is only provided to allow you to continue to use the older v2 API functionality in code you
may have had previously written and there are downsides to using it. You are strongly encouraged to migrate to the v3
API provided in this library (which is where any new features and improvements will be made going forward)._
Alternatively take a look at the examples directory in this repository for complete self contained
runnable example code.
---
For getting started interacting with the Hue Bridge, you will need to discover and then connect to the Hue Bridge as an
authorized user. To do this you need to either know the IP Address of the Hue Bridge in advance, or use the discovery
features to locate it.
Once you know the IP Address of the Bridge, you need to create a user that is authorized to interact with the Hue Bridge,
this is typically done by pressing the Link button on the bridge and then attempting to register a new user via code.
Below is example code that can be used to achieve this (using async/await to avoid nested Promises):
`js
const v3 = require('node-hue-api').v3
, discovery = v3.discovery
, hueApi = v3.api
;
const appName = 'node-hue-api';
const deviceName = 'example-code';
async function discoverBridge() {
const discoveryResults = await discovery.nupnpSearch();
if (discoveryResults.length === 0) {
console.error('Failed to resolve any Hue Bridges');
return null;
} else {
// Ignoring that you could have more than one Hue Bridge on a network as this is unlikely in 99.9% of users situations
return discoveryResults[0].ipaddress;
}
}
async function discoverAndCreateUser() {
const ipAddress = await discoverBridge();
// Create an unauthenticated instance of the Hue API so that we can create a new user
const unauthenticatedApi = await hueApi.createLocal(ipAddress).connect();
let createdUser;
try {
createdUser = await unauthenticatedApi.users.createUser(appName, deviceName);
console.log('*\n');
console.log('User has been created on the Hue Bridge. The following username can be used to\n' +
'authenticate with the Bridge and provide full local access to the Hue Bridge.\n' +
'YOU SHOULD TREAT THIS LIKE A PASSWORD\n');
console.log(Hue Bridge User: ${createdUser.username});Hue Bridge User Client Key: ${createdUser.clientkey}
console.log();
console.log('*\n');
// Create a new API instance that is authenticated with the new user we created
const authenticatedApi = await hueApi.createLocal(ipAddress).connect(createdUser.username);
// Do something with the authenticated user/api
const bridgeConfig = await authenticatedApi.configuration.getConfiguration();
console.log(Connected to Hue Bridge: ${bridgeConfig.name} :: ${bridgeConfig.ipaddress});
} catch(err) {
if (err.getHueErrorType() === 101) {
console.error('The Link button on the bridge was not pressed. Please press the Link button and try again.');
} else {
console.error(Unexpected Error: ${err.message});
}
}
}
// Invoke the discovery and create user code
discoverAndCreateUser();
`
The complete code sample above is available from here.
For more details on discovery of Hue Bridges, check out the discovery API and referenced examples
along with the users API.
---
`js
const v3 = require('node-hue-api').v3;
const LightState = v3.lightStates.LightState;
const USERNAME = 'your username to authenticating with the bridge'
// The name of the light we wish to retrieve by name
, LIGHT_ID = 1
;
v3.discovery.nupnpSearch()
.then(searchResults => {
const host = searchResults[0].ipaddress;
return v3.api.createLocal(host).connect(USERNAME);
})
.then(api => {
// Using a LightState object to build the desired state
const state = new LightState()
.on()
.ct(200)
.brightness(100)
;
return api.lights.setLightState(LIGHT_ID, state);
})
.then(result => {
console.log(Light state change was successful? ${result});`
})
;
For more details on interacting with lights, see the lights API and LightState
documentation and examples referenced within.
It can be rather involved to set up a remote connection, but not too onerous if you desire such a thing.
The complete documentation for doing this is detailed in the Remote API and associated links.
* Example for connecting remotely for the first time
* Example for connecting using existing OAuth tokens
There are a number of resources where users have detailed documentation on the Philips Hue Bridge;
- The Official Phillips Hue Documentation
- Hue Hackers Mailing List:
- StackOverflow:
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this library except in compliance with the License.
You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.