
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
harmonyhubjs-discover
Advanced tools
harmonyhubjs-discover
is a Node.JS library which lookups available Logitech Harmony hubs in the local network.
npm install harmonyhubjs-discover --save
const HarmonyHubDiscover = require('harmonyhub-discover')
const discover = new HarmonyHubDiscover(61991)
discover.on('online', function(hub) {
// Triggered when a new hub was found
console.log('discovered ' + hub.ip)
})
discover.on('offline', function(hub) {
// Triggered when a hub disappeared
console.log('lost ' + hub.ip)
})
discover.on('update', function(hubs) {
// Combines the online & update events by returning an array with all known
// hubs for ease of use.
const knownHubIps = hubs.reduce(function(prev, hub) {
return prev + (prev.length > 0 ? ', ' : '') + hub.ip
}, '')
console.log('known ips: ' + knownHubIps)
})
// Look for hubs:
discover.start()
// Stop looking for hubs again:
// discover.stop()
There are further examples available within the examples/ directory.
After looking up your Harmony hub, use harmonyhubjs-client to control it.
harmonyhubjs-discover
uses debug for generating traces throughout its execution time. Activate them by setting the DEBUG
environment variable:
DEBUG=harmonyhubjs:discover:* node myharmonyjsapp.js
The master
branch contains the latest stable release of the application.
Development efforts are integrated with the develop
branch first. Changes get then merged into master
as soon as a new release should be published.
When opening a new Pull Request make sure you point them to develop
. Further ensure that your code follows standard-js style guidelines and you make use of proper commit messages. harmonyhubjs-discover
loves Commitizen, so take a look there and use git cz
for the most simple workflow :-)
Thank you for your contribution!
Copyright (c) 2014 Manuel Alabor
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Discover available Logitech Harmony Hubs in the current network.
The npm package harmonyhubjs-discover receives a total of 30 weekly downloads. As such, harmonyhubjs-discover popularity was classified as not popular.
We found that harmonyhubjs-discover 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.