Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 1.12 KB

README.md

File metadata and controls

33 lines (27 loc) · 1.12 KB

express-not

Skip middleware when a path matches

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, middleware, [options]):

  • path: An Express path that should be skipped over. If the path of the request matches, the passed middleware will be skipped. Supports any of Express Path Examples.
  • middleware: An Express callback or router, or an array of callbacks and/or routers
  • options:
    • caseSensitive: Enable case sensitivity when matching the route (express.Router docs), default false
    • strict: Enable strict routing when matching the route (express.Router docs), default false
    • end: Match the route completely (like .all) instead of just the prefix (like .use), default false

License

MIT