Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
node-red-contrib-bool-gate
Advanced tools
Node RED node to include boolean logic gates.
$ npm install node-red-contrib-bool-gate
Restart Node-RED and use the node!
Or from the Node-RED's palette, search for "node-red-contrib-bool-gate".
Check example at "Import > Examples > boolean logic"
If you know how the boolean logic work, you can skip this section.
The boolean logic is a way to determine a condition regarding to the input.
Condition A | Condition B | AND | NAND | OR | NOR | XOR | XNOR |
---|---|---|---|---|---|---|---|
false | false | false | true | false | true | false | true |
false | true | false | true | true | false | true | false |
true | false | false | true | true | false | true | false |
true | true | true | true | true | false | false | true |
You can do it to for more than 2 condition :
Condition A | Condition B | Condition C | AND | NAND | OR | NOR | XOR | XNOR |
---|---|---|---|---|---|---|---|---|
false | false | false | false | true | false | true | false | true |
false | false | true | false | true | true | false | true | false |
false | true | false | false | true | true | false | true | false |
false | true | true | false | true | true | false | false | true |
true | false | false | false | true | true | false | true | false |
true | false | true | false | true | true | false | false | true |
true | true | false | false | true | true | false | false | true |
true | true | true | true | false | true | false | false | true |
You can follow this link to learn more about the boolean logic.
A rule can be read from top, like :
<TOPIC><PROPERTY><CONDITION><VALUE>
with topic, the topic of incomming message (if needed), property to perform the test, condition the condition you want for the property and value the value you want for the property (if needed).
You can pick property from everywhere :
The following condition are implemented :
You can pick value from the following type (depending on your condition) :
Please take you time to create your gate, by following these steps :
See the node information for more details
FAQs
Node RED node to include boolean logic gates
We found that node-red-contrib-bool-gate 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.