codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

API Rate Limiting with Node and Redis

Joyce Lin
codeburst
Published in
6 min readJun 29, 2020

--

Why rate limit?

How can you implement rate limiting?

Step 1: Create a Node app

$ npm init --yes
$ touch index.js
const express = require('express')const app = express()const port = process.env.PORT || 3000app.get('/', (req, res) => res.send('Hello World!'))app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`))
$ node index.js
app.post('/', async (req, res) => {  async function isOverLimit(ip) {    // to define  }  // check rate limit  let overLimit = await isOverLimit(req.ip)  if (overLimit) {    res.status(429).send('Too many requests - try again later')    return  }  // allow access to resources  res.send("Accessed the precious resources!")})
application-level rate limiting

Step 2: Add a rate limiter with Redis

rate limiting algorithm: sliding window counter
$ npm install ioredis
$ redis-server
const redis = require('ioredis')const client = redis.createClient({  port: process.env.REDIS_PORT || 6379,  host: process.env.REDIS_HOST || 'localhost',})client.on('connect', function () {  console.log('connected');});
async function isOverLimit(ip) {  let res  try {    res = await client.incr(ip)  } catch (err) {    console.error('isOverLimit: could not increment key')    throw err  }  console.log(`${ip} has value: ${res}`)  if (res > 10) {    return true  }  client.expire(ip, 10)}

Step 3: Test in Postman

within rate limit
exceeds rate limit — HTTP 429 too many requests

Final thoughts about rate limiting

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Responses (4)

Write a response