Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hue

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hue

An easy to use wrapper for the Hue API in NodeJS

  • 0.2.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
increased by800%
Maintainers
2
Weekly downloads
 
Created
Source

Hue.js

An easy to use wrapper from the Hue API in typescript.

Table Of Contents

Getting Started

Installing the package can be done with the following command:

npm i hue
const { Hue, Bridge } = require('hue');

Usage Examples

Example 1

Connecting to a bridge with the Hue class

const { Hue } = require('hue');

const { HUE_BRIDGE, HUE_USER } = process.env;

const hue = new Hue(HUE_BRIDGE, HUE_USER);

hue.on('ready', async (bridge) => {
    const groups = await bridge.Group.all();
    const group = groups[0];

    await group.toggle();
});

hue.on('error', (msg) => {
    setTimeout(() => {
        hue.connect();
    }, 30*1000);
});

Example 2

Connecting directly to a bridge

const { Bridge } = require('hue');

const { HUE_BRIDGE, HUE_USER } = process.env;

Bridge.one(HUE_BRIDGE).then(bridge => {
    const groups = await bridge.Group.all();
    const group = groups[0];

    await group.on();
});

Example 3

Connecting to the first (and mostly only bridge found)

const { Bridge } = require('hue');

const { HUE_BRIDGE, HUE_USER } = process.env;

Bridge.all().then(bridges => {
    const bridge = bridges[0];

    const lights = await bridge.Light.all();
    const light = lights[0];

    await light.off();
});

Documentation

Detailed documentation in docs.md.

Keywords

FAQs

Package last updated on 23 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc