Code Monkey home page Code Monkey logo

pipeline.js's Introduction

#pipeline.js node.js async pipeline with remote execution support

example

  var pipeline = require('pipeline');
  
  var steps = [
    function multiplyByTwo(x, next) {
      return next(null, x*2);
    },
    function addThree(x, next) {
      return next(null, x+3);
    },
    function powerOf2(x, next) {
      return next(null, x*x);
    }
  ];

  var local_pipeline = pipeline({ steps: steps});
  var remote_pipeline = pipeline({ steps: steps});

  local_pipeline
    .on('step', function(step, data) { console.log('[local] performing step %d', step, data);})
    .on('done', function(result) { console.log('[local] final result', result); })
    .on('error', function(err) { console.error('[local] error:', err); });

  remote_pipeline
    .on('step', function(step, data) { console.log('[remote] performing step %d', step, data);})
    .on('done', function(result) { console.log('[remote] final result', result); })
    .on('error', function(err) { console.error('[remote] error:', err); });

  var http = require('http');
  var server = http.createServer(function(req, res) {
    remote_pipeline.processRemoteRequest(req, res);
  });

  server.listen(9999, function() {
    local_pipeline.run({ data: 1, remoteSteps: [2], remoteHost: 'http://127.0.0.1:9999'}, function(err, result) {
      console.log('final result: %d', result);
      server.close();
    });
  });

license

MIT

pipeline.js's People

Stargazers

Marko Jankovic avatar  avatar

Watchers

James Cloos avatar Saar Yahalom avatar Yosef Dinerstein avatar GuyK avatar

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.