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

node-red-contrib-kafkajs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 0.0.6 to 0.0.7

14

js/kafka-client.js

@@ -42,9 +42,9 @@ module.exports = function(RED) {

else if(config.auth == 'saslplain'){
options.ssl = config.saslplainssl;
else if(config.auth == 'sasl'){
options.ssl = config.saslssl;
options.sasl = new Object();
options.sasl.mechanism = 'plain';
options.sasl.username = node.credentials.saslplainusername;
options.sasl.password = node.credentials.saslplainpassword;
options.sasl.mechanism = config.saslmechanism || 'plain';
options.sasl.username = node.credentials.saslusername;
options.sasl.password = node.credentials.saslpassword;
}

@@ -56,6 +56,6 @@

credentials: {
saslplainusername: {type:"text"},
saslplainpassword: {type:"password"}
saslusername: {type:"text"},
saslpassword: {type:"password"}
}
});
}

@@ -12,7 +12,8 @@ {

"kafkajs": "^1.12.0",
"passport-keycloak-oauth2-oidc": "^1.0.5",
"uuid": "^8.3.2"
},
"homepage": "https://github.com/emrebekar/node-red-contrib-kafkajs#readme",
"version":"0.0.6",
"license" :"Apache 2.0",
"version": "0.0.7",
"license": "Apache 2.0",
"keywords": [

@@ -19,0 +20,0 @@ "kafka",

Sorry, the diff of this file is not supported yet

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