Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@harmonyhub/client
Advanced tools
@harmonyhub/client is a Node.JS library which allows you to interact with your Logitech Harmony Hub.
@harmonyhub/client
is a package of the harmonyhub library for interacting with a Logitech
Harmony Hub.
It is based upon @swissmanu harmonyhubjs-client
Which was based upon @jterraces awesome Harmony
protocol guide. harmonyhubjs-client
provides an
extended protocol guide for the interested ones.
npm install @harmonyhub/client --save
Enhancements over the harmonyhub-client package are the following
## Usage
var harmony = require('@harmonyhub/client');
harmony('192.168.1.200')
.then(function(harmonyClient) {
harmonyClient.isOff()
.then(function(off) {
if(off) {
console.log('Currently off. Turning TV on.');
harmonyClient.getActivities()
.then(function(activities) {
activities.some(function(activity) {
if(activity.label === 'Watch TV') {
var id = activity.id
harmonyClient.startActivity(id)
harmonyClient.end()
return true
}
return false
})
});
} else {
console.log('Currently on. Turning TV off');
harmonyClient.turnOff();
harmonyClient.end();
}
})
});
This example connects to a Harmony hub available on the IP 192.168.1.200
. As soon as the the connection is established, isOff()
checks if the equipment is turned off. If off, the activity with the name Watch TV
is started. If on, all devices are turned off.
@harmonyhub/client
uses debug for generating traces throughout its execution time. Activate them by setting the DEBUG
environment variable:
$ DEBUG=harmonyhub:client* node myharmonyjsapp.js
FAQs
@harmonyhub/client is a Node.JS library which allows you to interact with your Logitech Harmony Hub.
The npm package @harmonyhub/client receives a total of 15 weekly downloads. As such, @harmonyhub/client popularity was classified as not popular.
We found that @harmonyhub/client demonstrated a not healthy version release cadence and project activity because the last version was released 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.