Agent-based task flow framework
npm install transgate
![Node]()

![License]()



Agent-based task flow framework for Node.js
```
npm install -save transgate
* Gate is an endpoint of Input/Output. For example, file storage, database, queue or API service.
* Agent is a worker to process an item between Input/Output gates and does not know anything opposite gates.
Item is an entity as each task target, to be exchanged between gates, and an Object or a JSON*. null indicates the terminator.
1. A agent receives an item from a gate for Input.
2. The agent processes an item.
3. According to need the Agent sends the results as next item(s) to some gate(s) for Output.
If the agent receives null as an item, sends null to all next gates and closes itself.
* All agents must be given gates for input and output in the constructor and run independently.
A gate is easy to replace because the interface of the item is a simple Object*.
A gate for Input must implement receive Promise* method that resolves an item.
A gate for Output must implement send Promise* method with argument an item. send resolves when completes to write the item.
* An agent inherits Agent class and overrides async main(item, outGate) method to process an item and send it to outGate.new YourAgent(inGate, outGate)
* To create an agent instance is to call . If the outGate is plural, it need be replaced with key-value-based { outGate1, outGate2 } in order to have async main(item, { outGate1, outGate2 }).async before()
* If the agent uses any daemon, overrides to launch it and async after() to shut down it.
To start agents is calling Agent.all(...yourAgents) Promise method. If you use any daemons in some gates, They should be shut down after all Promise has done.
There are the following gates in this library.
* MemoryGate - Supports both Input/Output for test
* ReadFileGate - Reading each line as an item from a file for Input
* WriteFileGate - Writing sended items to a file for Output
* HttpServerGate - Receiving an item that is a body POSTed by HTTP client for Input
* HttpClientGate - Sending an item as POST request body to fixed HTTP server endpoint for Output
* IntervalGate - Providing an item contains the time every interval passing for Input
* StdinGate - Reading each line as an item from stdin for Input
* StdoutGate - Writing sended items to stdout for Output
* JointGate - Pipes an agent to another one
: item.value + 1$3
* memory --> Agent1 --> joint
* joint --> Agent2 --> stdout`javascript
const {
Agent,
JointGate,
MemoryGate,
StdoutGate,
} = require('transgate');class ValueAdd1 extends Agent {
async main(item, stdoutGate) {
item.value += 1;
stdoutGate.send(item);
}
}
const inputGate = new MemoryGate([
{ value: 1 }, { value: 2 }, { value: 3 }, { value: 4 }
]);
const joint = new JointGate();
const stdoutGate = new StdoutGate();
Agent.all(
Agent.create(inputGate, joint, async (item) => {
item.value *= 2;
return item;
}),
new ValueAdd1(joint, stdoutGate),
)
.catch(err => {
console.error(err);
});
`#### The result stdout
`json
{"value":3}
{"value":5}
{"value":7}
{"value":9}
``