Build complex rules, serialize them as JSON, and execute them in JavaScript
Installations
npm install json-logic-js
Developer
jwadhams
Developer Guide
Module System
CommonJS
Min. Node Version
Typescript Support
No
Node Version
16.20.2
NPM Version
8.19.4
Statistics
1,285 Stars
104 Commits
139 Forks
19 Watching
6 Branches
7 Contributors
Updated on 27 Nov 2024
Languages
JavaScript (86.68%)
HTML (13.32%)
Total Downloads
Cumulative downloads
Total Downloads
23,150,259
Last day
-8.7%
37,373
Compared to previous day
Last week
1.5%
217,320
Compared to previous week
Last month
13.6%
917,628
Compared to previous month
Last year
61.7%
9,107,257
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dev Dependencies
3
json-logic-js
This parser accepts JsonLogic rules and executes them in JavaScript.
The JsonLogic format is designed to allow you to share rules (logic) between front-end and back-end code (regardless of language difference), even to store logic along with a record in a database. JsonLogic is documented extensively at JsonLogic.com, including examples of every supported operation and a place to try out rules in your browser.
The same format can also be executed in PHP by the library json-logic-php
Installation
We recommend that you install this library with a package manager, like NPM (or Yarn, etc):
1npm install json-logic-js
Note that this project uses a module loader that also makes it suitable for RequireJS projects.
If that doesn't suit you, and you want to manage updates yourself, the entire library is self-contained in logic.js
and you can download it straight into your project as you see fit.
1curl -O https://raw.githubusercontent.com/jwadhams/json-logic-js/master/logic.js
Examples
Simple
1jsonLogic.apply( { "==" : [1, 1] } ); 2// true
This is a simple test, equivalent to 1 == 1
. A few things about the format:
- The operator is always in the "key" position. There is only one key per JsonLogic rule.
- The values are typically an array.
- Each value can be a string, number, boolean, array (non-associative), or null
Compound
Here we're beginning to nest rules.
1jsonLogic.apply( 2 {"and" : [ 3 { ">" : [3,1] }, 4 { "<" : [1,3] } 5 ] } 6); 7// true
In an infix language (like JavaScript) this could be written as:
1( (3 > 1) && (1 < 3) )
Data-Driven
Obviously these rules aren't very interesting if they can only take static literal data. Typically jsonLogic
will be called with a rule object and a data object. You can use the var
operator to get attributes of the data object:
1jsonLogic.apply( 2 { "var" : ["a"] }, // Rule 3 { a : 1, b : 2 } // Data 4); 5// 1
If you like, we support syntactic sugar on unary operators to skip the array around values:
1jsonLogic.apply( 2 { "var" : "a" }, 3 { a : 1, b : 2 } 4); 5// 1
You can also use the var
operator to access an array by numeric index:
1jsonLogic.apply( 2 {"var" : 1 }, 3 [ "apple", "banana", "carrot" ] 4); 5// "banana"
Here's a complex rule that mixes literals and data. The pie isn't ready to eat unless it's cooler than 110 degrees, and filled with apples.
1var rules = { "and" : [ 2 {"<" : [ { "var" : "temp" }, 110 ]}, 3 {"==" : [ { "var" : "pie.filling" }, "apple" ] } 4] }; 5 6var data = { "temp" : 100, "pie" : { "filling" : "apple" } }; 7 8jsonLogic.apply(rules, data); 9// true
Always and Never
Sometimes the rule you want to process is "Always" or "Never." If the first parameter passed to jsonLogic
is a non-object, non-associative-array, it is returned immediately.
1//Always 2jsonLogic.apply(true, data_will_be_ignored); 3// true 4 5//Never 6jsonLogic.apply(false, i_wasnt_even_supposed_to_be_here); 7// false
Compatibility
This library makes use of Array.map
and Array.reduce
, so it's not exactly Internet Explorer 8 friendly.
If you want to use JsonLogic and support deprecated browsers, you could easily use BabelJS's polyfill or directly incorporate the polyfills documented on MDN for map and reduce.
Customization
It's not possible to include everyone's excellent ideas without the core library bloating, bringing in a ton of outside dependencies, or occasionally causing use case conflicts (some people need to safely execute untrusted rules, some people need to change outside state).
Check out the documentation for adding custom operations and be sure to stop by the Wiki page of custom operations to see if someone has already solved your problem or to share your solution.
Stable Version
The latest stable version of the package.
Stable Version
2.0.5
CRITICAL
1
9.8/10
Summary
json-logic-js Command Injection vulnerability
Affected Versions
< 2.0.1
Patched Versions
2.0.1
HIGH
1
0/10
Summary
Prototype Pollution in json-logic-js
Affected Versions
< 2.0.0
Patched Versions
2.0.0
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
Reason
Found 7/24 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 14 are checked with a SAST tool
Score
3.3
/10
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreOther packages similar to json-logic-js
@types/json-logic-js
TypeScript definitions for json-logic-js
json-logic-js-graphql
Graphql query support for json-logic-js using Lodash methods
@axa-ch/json-logic-js
Build complex rules, serialize them as JSON, and execute them in JavaScript
@mkontsek/json-logic-js-graphql
Graphql query support for json-logic-js using Lodash methods