Skip to content

Instantly share code, notes, and snippets.

@iitsuraj
Created March 19, 2020 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iitsuraj/7e677806884b5bfdba7fd24937cb1087 to your computer and use it in GitHub Desktop.
Save iitsuraj/7e677806884b5bfdba7fd24937cb1087 to your computer and use it in GitHub Desktop.
Api rate limiter
var limiter = require("../misc/rate-limit.js")
app.post("/create-account", limiter.createAccountLimiter, function(req, res) {
//...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment