Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Created January 19, 2021 08:14
Show Gist options
  • Save petrosDemetrakopoulos/5f24682de83c4749b3d092b175b50cdd to your computer and use it in GitHub Desktop.
Save petrosDemetrakopoulos/5f24682de83c4749b3d092b175b50cdd to your computer and use it in GitHub Desktop.
var rateLimit = require("express-rate-limit");
var apiLimiter = rateLimit({
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100
});
// only apply to requests that begin with /api/
app.use("/api/", apiLimiter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment