Socket
Socket
Sign inDemoInstall

node-red-contrib-weatherflow-api-client

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.2.1

nodes/observations-device/observations-device.html

17

nodes/stations/weatherflow-stations.js

@@ -37,8 +37,13 @@ module.exports = function (RED) {

http
.request(options, callback)
.on("error", (e) => {
done('problem with request: ${e.message}');
})
.end();
try {
http
.request(options, callback)
.on("error", (e) => {
done('problem with request: ${e.message}');
})
.end();
} catch (error) {
done(error);
}
});

@@ -45,0 +50,0 @@ }

{
"name": "node-red-contrib-weatherflow-api-client",
"version": "1.0.1",
"version": "1.2.1",
"author": "Michael Rohrhirsch (https://github.com/CrunkA3)",

@@ -20,3 +20,5 @@ "description": "A WeahterFlow Tempest API client for Node-RED",

"weatherflow-stations": "nodes/stations/weatherflow-stations.js",
"weatherflow-forecast": "nodes/forecast/weatherflow-forecast.js"
"weatherflow-forecast": "nodes/forecast/weatherflow-forecast.js",
"observations-device": "nodes/observations-device/observations-device.js",
"observations-station": "nodes/observations-station/observations-station.js"
}

@@ -23,0 +25,0 @@ },

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