1.0.5 • Published 6 months ago

intermediary v1.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 months ago

Intermediary

Have hooks and middleware for just about any function.

npm version build status bundle size

Features

  • Execute middleware before your function executes
  • Execute afterware after your function executes
  • Organize and compose repeated workflows
  • Asynchronous middleware and afterware support
  • Works in node as well as browser

Installing

Using NPM:

npm i intermediary

Using yarn:

yarn add intermediary

UMD Build CDN:

<script src="https://cdn.jsdelivr.net/npm/intermediary/lib/intermediary.min.js"></script>

Importing

Common JS:

const Intermediary = require('intermediary')

ES6:

import Intermediary from 'intermediary';

Browser:

If using the CDN, Intermediary is available at window.Intermediary.

Usage: see http://eskawl.github.io/intermediary