connect-settimeout

0.0.3 • Public • Published

connect-settimeout

a connect middleware that runs a provided function if a request lasts longer than a given duration

Build Status Coverage Status

NPM

Setup:

Add this middleware to your connect or express app like this:

var connectSetTimeout = require('connect-settimeout');
app.use(connectSetTimeout(function(req, res){
  // do whatever you want with the slow request, eg:
  console.error("There was a slow response at ", req.method, req.url);
}, 10000));  // 10 seconds, specified in milliseconds

Package Sidebar

Install

npm i connect-settimeout

Weekly Downloads

2

Version

0.0.3

License

MIT

Last publish

Collaborators

  • byronmwong
  • cainus