🚀 Launch Week Day 3:Introducing Supply Chain Attack Campaigns Tracking.Learn More →
Socket
Book a DemoInstallSign in
Socket

ratelimit-lru

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ratelimit-lru

Small module for doing generic rate limiting using an LRU cache

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

ratelimit-lru

Small module for doing generic rate limiting using an LRU cache

npm install ratelimit-lru

Usage

var http = require('http')
var ratelimit = require('ratelimit-lru')

var ratelimited = ratelimit({
  cache: 1000, // store up to 1000 in the cache
  limit: 5 // 5 per second
})

var server = http.createServer(function (req, res) {
  if (ratelimited(req.connection.address().host)) {
    res.end('you are rate limited')
    return
  }
  res.end('ok')
})

// try accessing this a bunch of times in your browser
server.listen(8080)

API

var ratelimited = ratelimit([opts])

Returns a function that tells you if a current key (usually an IP string) is being ratelimited.

Options include:

{
  cache: 1000, // how big the cache should be
  limit: 5 // how many times per second this function can be called
}

var bool = ratelimited(key)

Returns true if the key is being ratelimited, otherwise false.

License

MIT

FAQs

Package last updated on 31 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts