
Research
/Security News
Shai Hulud Strikes Again (v2)
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.
@clipboard-health/rules-engine
Advanced tools
A pure functional rules engine to keep logic-dense code simple, reliable, understandable, and explainable.
A pure functional rules engine to keep logic-dense code simple, reliable, understandable, and explainable.
The engine uses static rules created in code instead of dynamic rules serialized to a database since we haven't needed the latter yet.
npm install @clipboard-health/rules-engine
import { deepEqual } from "node:assert/strict";
import {
all,
allIf,
appendOutput,
firstMatch,
type Rule,
type RuleContext,
} from "@clipboard-health/rules-engine";
interface Input {
a: number;
b: number;
}
interface Output {
result: number;
}
const exampleContext: RuleContext<Input, Output> = {
input: {
a: 2,
b: 5,
},
output: [],
};
const addNumbersIfPositiveRule: Rule<Input, Output> = {
runIf: (input) => input.a > 0 && input.b > 0,
run: (context) => {
const { a, b } = context.input;
return appendOutput(context, { result: a + b });
},
};
const multiplyNumbersIfPositiveRule: Rule<Input, Output> = {
runIf: (input) => input.a > 0 && input.b > 0,
run: (context) => {
const { a, b } = context.input;
return appendOutput(context, { result: a * b });
},
};
const divideNumbersIfNegative: Rule<Input, Output> = {
runIf: (input) => input.a < 0 && input.b < 0,
run: (context) => {
const { a, b } = context.input;
return appendOutput(context, { result: a / b });
},
};
// Using all() applies all the rules to the context
const allResult = all(
addNumbersIfPositiveRule,
divideNumbersIfNegative,
multiplyNumbersIfPositiveRule,
).run(exampleContext);
deepEqual(allResult.output, [{ result: 7 }, { result: 10 }]);
// Using firstMatch() applies the first the rules to the context
const firstMatchResult = firstMatch(
divideNumbersIfNegative,
addNumbersIfPositiveRule,
multiplyNumbersIfPositiveRule,
).run(exampleContext);
deepEqual(firstMatchResult.output, [{ result: 7 }]);
// Using allIf() applies all the rules that return true for `runIf` to the context when the predicate
// (a function received as firs argument) returns true
const allIfResult = allIf(
(input) => input.a === 2,
divideNumbersIfNegative,
addNumbersIfPositiveRule,
multiplyNumbersIfPositiveRule,
).run(exampleContext);
deepEqual(allIfResult.output, [{ result: 7 }, { result: 10 }]);
See package.json scripts for a list of commands.
FAQs
A pure functional rules engine to keep logic-dense code simple, reliable, understandable, and explainable.
The npm package @clipboard-health/rules-engine receives a total of 2,938 weekly downloads. As such, @clipboard-health/rules-engine popularity was classified as popular.
We found that @clipboard-health/rules-engine demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.

Research
/Security News
Another wave of Shai-Hulud campaign has hit npm with more than 500 packages and 700+ versions affected.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.