Im using express with node.js, and testing certain routes. I\'m doing this tute at http://coenraets.org/blog/2012/10/creating-a-rest-api-using-node-js-express-and-mongodb/>
To apply it globaly on all requests you can use the following code:
app.use( ( req, res, next ) => { setTimeout(next, Math.floor( ( Math.random() * 2000 ) + 100 ) ); });
Time values are:
Max = 2000 (sort of.... min value is added so in reality its 2100)
Min = 100