Rust-Powered Performance
Native bindings to our Rust engine deliver near-native speed. Process thousands of rules in milliseconds.
GoRules Version 2 is here - redesigned, now with managed cloud.GoRules Version 2 is here!
Watch the launch videoWatchOpen source JavaScript rules engine with native Rust performance. Decision tables, expressions, and rule graphs for Node.js, Deno, and Bun.
Install the SDK, load a decision graph, evaluate - the same JSON your team edits in the visual editor runs in your process.
npm install @gorules/zen-engineimport { ZenEngine } from '@gorules/zen-engine';
import fs from 'fs/promises';
const engine = new ZenEngine();
const content = await fs.readFile('./decision.json');
const decision = engine.createDecision(content);const result = await decision.evaluate({
customer: { tier: 'premium', country: 'US' },
cart: { total: 150, items: 3 }
});
console.log(result.result); // { discount: 15, freeShipping: true }Built for performance and developer experience - native speed with an API that feels at home in your codebase.
Native bindings to our Rust engine deliver near-native speed. Process thousands of rules in milliseconds.
Built for modern Node.js with full async/await support. Non-blocking evaluation for high-throughput applications.
Minimal footprint with no external runtime dependencies. Just install and start evaluating rules.
GoRules provides a high-performance business rules engine for JavaScript applications. Built with a Rust core and native Node.js bindings, it delivers exceptional speed without sacrificing the developer experience JavaScript developers expect.
The engine supports decision tables, expression evaluation, and complex rule graphs - all manageable through a visual editor or programmatically via the SDK. Whether you're building pricing engines, eligibility checkers, or approval workflows, GoRules handles the complexity while keeping your code clean.
Unlike traditional rule engines that require a separate server, GoRules embeds directly into your Node.js application. This means zero network latency for rule evaluation, offline capability, and no per-evaluation fees. The same decision graphs created in the GoRules editor work seamlessly in your JavaScript runtime.
See the public Zen Engine benchmarksThe engine is open source and free forever - add the GoRules BRMS when your team needs versioning, approvals, and an audit trail.