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

node-red-contrib-ifttt

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-ifttt - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

12

nodes/ifttt.js

@@ -19,10 +19,12 @@ var request = require('request');

node.status({fill: 'blue', shape: 'dot', text: 'Sending...'});
var iftttPayload = {};
if (msg.payload) {
iftttPayload.value1 = msg.payload.value1;
iftttPayload.value2 = msg.payload.value2;
iftttPayload.value3 = msg.payload.value3;
}
request({
uri: 'https://maker.ifttt.com/trigger/' + node.config.eventName + '/with/key/' + node.key.credentials.key,
method: 'POST',
json: {
value1: msg.payload.value1,
value2: msg.payload.value2,
value3: msg.payload.value3
}
json: iftttPayload
}, function (error, response, body) {

@@ -29,0 +31,0 @@ if (!error && response.statusCode === 200) {

{
"name": "node-red-contrib-ifttt",
"version": "0.0.12",
"version": "0.0.13",
"description": "A node-red node to connect to ifttt Maker channel",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/diegopamio/node-red-ifttt",

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