Socket
Socket
Sign inDemoInstall

@j3lte/govee-lan-controller

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @j3lte/govee-lan-controller

Control Govee devices over LAN


Version published
Maintainers
1
Install size
209 kB
Created

Readme

Source

Govee LAN Controller

npm License GitHub Bugs GitHub issues GitHub last commit npm type definitions Bundlephobia

This is a Node.js library for controlling Govee devices over the LAN.

Installation

npm install @j3lte/govee-lan-controller

Usage

import { Govee } from '@j3lte/govee-lan-controller';

const run = async () => {
    const govee = new Govee();
    const device = await govee.getDevice();

    if (device) {
        await device.turnOn();
        await device.setBrightness(50);
        await device.setColor('red');
    }
}

run();

API

API documentation is available here.

License

MIT

Keywords

FAQs

Last updated on 24 Apr 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc