workflow-4-node
Version:
Workflow 4 Node is a .NET Workflow Foundation like framework for Node.js. The goal is to reach feature equivalence and beyond.
23 lines (21 loc) • 424 B
JavaScript
;
module.exports = {
activityStates: {
run: "run",
end: "end",
complete: "complete",
cancel: "cancel",
idle: "idle",
fail: "fail"
},
workflowEvents: {
start: "start",
invoke: "invoke",
end: "end",
warn: "warn",
workflowEvent: "workflowEvent"
},
events: {
workflowEvent: "workflowEvent"
}
};