Giter Site home page Giter Site logo

transgate's Introduction

Transgate

npm Node document License dependencies Status Build Status Coverage Status

Agent-based task flow framework for Node.js

Install

npm install -save transgate

Actors in this framework

  • 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.

How it works

  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.

Implements

Gate

  • 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.

Agent

  • An agent inherits Agent class and overrides async main(item, outGate) method to process an item and send it to outGate.
  • To create an agent instance is to call new YourAgent(inGate, outGate). If the outGate is plural, it need be replaced with key-value-based { outGate1, outGate2 } in order to have async main(item, { outGate1, outGate2 }).
  • If the agent uses any daemon, overrides async before() to launch it and async after() to shut down it.

Starting

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.

Standard Gate classes

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

Converter for Gate

  • mixer - Receiving items from some gates for Input
  • duplicator - Sending an item the multiple gates for Output

An example

About agents

  1. (No name) : item.value x 2
  2. ValueAdd1 : item.value + 1

About connections between agent and gates

  • memory --> Agent1 --> joint
  • joint --> Agent2 --> stdout
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

{"value":3}
{"value":5}
{"value":7}
{"value":9}

Reference articles

transgate's People

Contributors

tilfin avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

transgate's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.