
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
shellies-ds9-pro1
Advanced tools
Handles communication with the next generation of Shelly devices (pro1)
Handles communication with the next generation of Shelly devices. This Package is only to pimp up the existing package https://badgen.net/npm/v/shellies-ng. Because I'm lost if my Minis don't run in the Homebridge. If Alex creates a new version of his package that supports the Mini devices, I will delete this package again. thx@sw-koenig...
For the first generation, see node-shellies.
1 Support for outbound websockets is a work in progress.
import {
Device,
DeviceId,
MdnsDeviceDiscoverer,
Shellies,
ShellyPlus1,
} from "shellies-ds9";
const shellies = new Shellies();
// handle discovered devices
shellies.on("add", async (device: Device) => {
console.log(`${device.modelName} discovered`);
console.log(`ID: ${device.id}`);
// use instanceof to determine the device model
if (device instanceof ShellyPlus1) {
const plus1 = device as ShellyPlus1;
// toggle the switch
await plus1.switch0.toggle();
}
});
// handle asynchronous errors
shellies.on("error", (deviceId: DeviceId, error: Error) => {
console.error("An error occured:", error.message);
});
// create an mDNS device discoverer
const discoverer = new MdnsDeviceDiscoverer();
// register it
shellies.registerDiscoverer(discoverer);
// start discovering devices
discoverer.start();
See homebridge-shelly-ng for a real-world example.
FAQs
Handles communication with the next generation of Shelly devices (pro1)
The npm package shellies-ds9-pro1 receives a total of 2 weekly downloads. As such, shellies-ds9-pro1 popularity was classified as not popular.
We found that shellies-ds9-pro1 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.