New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

homenode-node

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homenode-node - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

8

homenode.js

@@ -33,2 +33,5 @@ var express = require('express');

function addDevice(device) {
if( !device.id ) {
throw "Device ID must be set."
}
devices.push(device);

@@ -53,5 +56,6 @@ master.notifyDeviceChange();

} else {
var action = getDeviceAction(devices[idx],req.params.actionname);
var device = devices[idx];
var action = getDeviceAction(device, req.params.actionname);
if( action ) {
action.use(req,res);
action.use(device,action);
res.sendStatus(200);

@@ -58,0 +62,0 @@ } else {

{
"name": "homenode-node",
"version": "0.0.4",
"version": "0.0.5",
"description": "Homenode node library",

@@ -5,0 +5,0 @@ "main": "homenode.js",

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