jools

0.0.1 • Public • Published

Jools

What is Jools?

Jools is a forward chaining Business Rules Engine (BRE), currently implemented as an inference engine.

JSON Rules

Jools uses JSON rules. Rules consist of a descriptive name, one or more conditions and one or more consequences. Jools allows for very expressive rules, take for example the following:

{
  "name": "say hello to Dave",
  "condition": 
    function(name) {
      return name == "Dave";
    }
  ,
  "consequence": 
    function(name) {
      console.log("Hello " + name);
    }
}

Provided the following fact, the rule would output "Hello Dave" to the console:

{
  "name": "Dave",
  "email": "dave@ibm.com"
}

Readme

Keywords

none

Package Sidebar

Install

npm i jools

Weekly Downloads

1

Version

0.0.1

License

none

Last publish

Collaborators

  • tdegrunt