GithubHelp home page GithubHelp logo

minimiddle's Introduction

minimiddle

A mini javascript middleware pattern implementation forked from darrenscerri/Middleware.js.

Usage

$ npm install --save minimiddle
const assert = require('assert');
const Middleware = require('minimiddle');

// Create a middleware instance
var middleware = new Middleware();

// Apply first middleware function
middleware.use((arg, next) => {
  arg.num += 2;
  next();
});

// Apply second middleware function
middleware.use((arg, next) => {
  arg.num *= 3;
  next();
});

// Run middlewares
middleware.go({ num: 0 }, (arg) => {
  assert.ok(arg.num === 6);
});

APIs

  • use(func(...args, next)): Add middleware function to stack.
// Example 1: middlewares with single argument

middleware.use((arg, next) => {
  arg.msg = 'middleware';
  next();
});

middleware.use((arg, next) => {
  arg.msg += ' example 1';
  next();
});
// Example 2: middlewares with multiple arguments

middleware.use((arg1, arg2, arg3, next) => {
  arg1.msg = 'middleware example 2';
  arg2.msg = 'middleware example 2';
  arg3.msg = 'middleware example 2';
  next();
});

middleware.use((arg1, arg2, arg3, next) => {
  arg1.msg += ' arg1';
  arg2.msg += ' arg2';
  arg3.msg += ' arg3';
  next();
});
  • go(...args, done(...args)): Run middlewares.
// Example 1 (Cont.): run middleware with single argument
middleware.go({ msg: 'init msg' }, (arg) => {
  console.log(arg.msg); // prints 'middleware example 1'
});
// Example 2 (Cont.): run middleware with multiple arguments
middleware.go({ msg: '1st msg' }, { msg: '2nd msg' }, { msg: '3rd msg' }, (arg1, arg2, arg3) => {
  console.log(arg1.msg); // prints 'middleware example 2 arg1'
  console.log(arg2.msg); // prints 'middleware example 2 arg2'
  console.log(arg3.msg); // prints 'middleware example 2 arg3'
});

minimiddle's People

Contributors

csy1983 avatar

Watchers

 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.