express-delay
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

express-delay

Delay express responses

Use case

You want to test your fancy ajax loaders, spinners and stuff, but your dev machine is too damn fast for that shit!

Usage

var app = require('express')();
var delay = require('express-delay');
 
// Delay all responses for 1 second
app.use(delay(1000));
 
// Response will be delayed for 1 second
app.get('/', function(req, res) {
    res.send('Hello world!');
});
 
// ...

Random delay

You can also give it a range of values, which will make the delay random:

// Delay will be between 200 and 500 milliseconds
app.use(delay(200, 500));

LICENSE

MIT

Package Sidebar

Install

npm i express-delay

Weekly Downloads

1,043

Version

0.2.0

License

MIT

Last publish

Collaborators

  • boo1ean