npm.io
1.0.5 • Published 2 years ago

intermediary

Licence
MIT
Version
1.0.5
Deps
0
Size
21 kB
Vulns
0
Weekly
0
Stars
6

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

Keywords