1.0.9 • Published 4 years ago

@saas-plat/metarule v1.0.9

Weekly downloads
-
License
MPL-2.0
Repository
github
Last release
4 years ago

metarule

规则引擎,提供业务逻辑的定义和解析执行

配置

需要由调用方初始化i18next

规则语法

由一组条件和行为组成

{
  "name": "validating",
  "when": [
    ["Action", "a", facts => facts.a.name === 'validating'],   
    [Table, "t"]
  ],
  "then": [
    `console.log(facts)`,
    `if (!t.Name){
        throw new Error('!Name', t.Name)
      }else{
        console.log('validating',t.Name,'=>OK')
      }`
  ]
}
1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.1

4 years ago