Giter Club home page Giter Club logo

stackware's Introduction

stackware

Stackware is a basic connect-style middleware handler for node.js, used for pushing objects through a list of functions, modifying them and handling errors.

Installation

npm install stackware

Usage

  var Stackware = require('stackware');
  var sw        = new Stackware();
  
  sw.use(function middleware1(obj1, obj2, next) {
    obj1.foo = 'bar';
    next();
  });
  sw.use(function middleware2(obj1, obj2, next) {
    obj2.bar = 'foo';
    // stop here
  });
  sw.process(obj1, obj2);

Documentation

Class: Stackware

Create a Stackware object.

var Stackware = require('stackware');
var sw        = new Stackware();

Methods

use(function)

Add a middleware to the stack. It can be either a function or an object providing a handle function. It will be called with the same arguments given to process (see below), plus a callback function which can take an error.

 function Middleware() {}
 Middleware.prototype.handle = function (obj1, obj2, next) { next(); };
 
 // Object with handle function
 sw.use(new Middleware());
 
 // Function
 sw.use(function (obj1, obj2, next) {
   obj1.foo = 'bar';
   next();
 });
 
 sw.process(obj1, obj2);

When the callback is called with an error, further middlewares will be skipped until we reach an error handler. It's basically a middleware with an error argument prepended to the others.

 sw.use(function middleware1(obj, next) {
   next(new Error('Something happened'));
 });
 sw.use(function errorHandler(err, obj, next) {
   console.log(err);
 });
 sw.process(obj);

process(obj1, obj2, ...)

Push any number of objects through the middlewares.
NB: only variables passed by reference can be changed inside the middlewares (i.e. objects, arrays).

stackware's People

Contributors

nojhamster avatar

Watchers

James Cloos avatar  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.