Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
The npm package node-red-contrib-bool-gate receives a total of 603 weekly downloads. As such, node-red-contrib-bool-gate popularity was classified as not popular.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.