Have hooks and middleware for just about any function.
- 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
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>
Common JS:
const Intermediary = require('intermediary')
ES6:
import Intermediary from 'intermediary';
Browser:
If using the CDN, Intermediary is available at window.Intermediary
.