@7rabbit/tree 中文文档教程
tree
对象/动作树解析器
Introduction
Installation
npm install @7rabbit/tree
Illustration
import tree from '@7rabbit/tree'
const Ink = require('@7rabbit/ink')
const tree = require('./')
const ink = new Ink()
ink.attachModule(tree(mount))
ink.invokeAction('start').then(x => console.log(x))
function mount({ stack, field, route, batch, cause, queue }) {
return stack(
field('foo', 5),
route('foo', foo),
route('bar', bar),
route('baz', baz),
route('start', start),
)
}
tree
Object/Action Tree Resolver
Introduction • Installation • Illustration
Introduction
Installation
npm install @7rabbit/tree
Illustration
import tree from '@7rabbit/tree'
const Ink = require('@7rabbit/ink')
const tree = require('./')
const ink = new Ink()
ink.attachModule(tree(mount))
ink.invokeAction('start').then(x => console.log(x))
function mount({ stack, field, route, batch, cause, queue }) {
return stack(
field('foo', 5),
route('foo', foo),
route('bar', bar),
route('baz', baz),
route('start', start),
)
}