express-not
v3.0.0
Published
Skip middleware when a path matches
Downloads
17
Readme
express-not
Skip middleware when a path matches
This package works with Express v5. For Express v4 support, use express-not@2
.
Install
npm install express-not
Usage
const not = require('express-not')
app.use('/mount',
not(['/skip'], (req, res) => res.send('stopped')),
(req, res) => res.send('skipped')
)
// GET /mount/skip => skipped
// GET /mount/other => stopped
Documentation
not(path, [options], ...middleware)
:
path
: An Express path that should be skipped over. If the path of the request matches, the passedmiddleware
will be skipped. Supports any of Express Path Examples.options
:caseSensitive
: Enable case sensitivity when matching the route (express.Router docs), defaultfalse
strict
: Enable strict routing when matching the route (express.Router docs), defaultfalse
matchToEnd
: Match the route completely (like.all
) instead of just the prefix (like.use
), defaultfalse
middleware
: An Express callback or router, an array of callbacks and/or routers, or a mix of these
The v1
documentation is here.
Development
yarn
yarn build
yarn test
License
MIT