Rule Editor
How To Use
- Install VS Code Rule Engine Editor.
- Create new
foo.ruleand open file in VS Code editor. - Drag the step elements from the toolbar to the canvas and connect them with lines. Any pipeline should begin with a start step and end with an end step.
- Save changes and compile
foo.rulefile in javascript.
If you are using webpack loader or rollup plugin to compile the rule file into javascript code, just import and call the asynchronous execute method:
import foo from './foo.rule';
const context = {};
foo.execute(context).catch(e => console.error(e));
Or install VS Code Rule Engine Compiler and right-click on the foo.rule file and select the menu Rule Engine: Compile. File foo.js will be created in the same directory. Next, import the file in your code and call the asynchronous execute method:
import foo from './foo.js';
const context = {};
foo.execute(context).catch(e => console.error(e));
