HTTP Caching in Node.js APIs: ETag, Cache-Control, and stale-while-revalidate Explained

HTTP caching is one of those topics where everyone knows it exists, few people implement it correctly, and almost nobody talks about the failure modes. This is the guide I wish existed when I was b...

By · · 1 min read
HTTP Caching in Node.js APIs: ETag, Cache-Control, and stale-while-revalidate Explained

Source: DEV Community

HTTP caching is one of those topics where everyone knows it exists, few people implement it correctly, and almost nobody talks about the failure modes. This is the guide I wish existed when I was building my first API that needed to stay fast under load. What HTTP caching actually is HTTP caching isn't one mechanism. It's a family of related headers that tell clients and proxies what to do with a response. Getting them wrong means either stale data reaching users or your server hammered on every request. The three headers you need to understand: Cache-Control: max-age=300, stale-while-revalidate=60 ETag: "33a64df551425fcc55e4d42a148795d9f25f89d" Last-Modified: Wed, 19 Mar 2026 12:00:00 GMT These do very different things. Let's break them down. Cache-Control The most important header. It tells the browser (and any CDN/proxy in between) how long to cache the response. // The directives you'll actually use: res.setHeader('Cache-Control', 'public, max-age=300'); // Public = CDNs can cache

Related Posts

Similar Topics

#ai (398)#programming (287)#tutorial (164)#productivity (166)#beginners (125)#opensource (121)#typescript (88)#security (99)#python (101)#react (83)#showdev (85)#devops (67)#nextjs (55)#backend (50)#architecture (52)#seo (38)#frontend (38)#open source (48)#performance (40)#tools (37)

Trending on ShareHub

  1. Understanding Modern JavaScript Frameworks in 2026
    by Alex Chen · Feb 12, 2026 · 0 likes
  2. The System Design Primer
    by Sarah Kim · Feb 12, 2026 · 0 likes
  3. Just shipped my first open-source project!
    by Alex Chen · Feb 12, 2026 · 0 likes
  4. OpenAI Blog
    by Sarah Kim · Feb 12, 2026 · 0 likes
  5. Building Accessible Web Applications: A Practical Guide
    by Alex Chen · Feb 12, 2026 · 0 likes
  6. Rapper Lil Poppa dead at 25, days after releasing new music
    Rapper Lil Poppa dead at 25, days after releasing new music
    by Anonymous User · Feb 19, 2026 · 0 likes
  7. write-for-us
    by Volt Raven · Mar 7, 2026 · 0 likes
  8. Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    Before the Coffee Gets Cold: Heartfelt Story of Time Travel and Second Chances
    by Anonymous User · Feb 12, 2026 · 0 likes
    #coffee gets cold #the #time travel
  9. Best DoorDash Promo Code Reddit Finds for Top Discounts
    Best DoorDash Promo Code Reddit Finds for Top Discounts
    by Anonymous User · Feb 12, 2026 · 0 likes
    #doordash #promo #reddit
  10. Premium SEO Services That Boost Rankings & Revenue | VirtualSEO.Expert
    by Anonymous User · Feb 12, 2026 · 0 likes
  11. NBC under fire for commentary about Team USA women's hockey team
    NBC under fire for commentary about Team USA women's hockey team
    by Anonymous User · Feb 18, 2026 · 0 likes
  12. Where to Watch The Nanny: Streaming and Online Viewing Options
    Where to Watch The Nanny: Streaming and Online Viewing Options
    by Anonymous User · Feb 12, 2026 · 0 likes
    #streaming #the nanny #where
  13. How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    How Much Is Kindle Unlimited? Subscription Cost and Plan Details
    by Anonymous User · Feb 12, 2026 · 0 likes
    #kindle unlimited #subscription #unlimited
  14. Russian skater facing backlash for comment about Amber Glenn
    Russian skater facing backlash for comment about Amber Glenn
    by Anonymous User · Feb 18, 2026 · 0 likes
  15. Google News
    Google News
    by Anonymous User · Feb 18, 2026 · 0 likes

Latest on ShareHub

Browse Topics

#artificial intelligence (36896)#data science (24144)#generative ai (19072)#ai (18325)#crypto (15110)#machine learning (14735)#bitcoin (14365)#featured (13598)#news & insights (13064)#crypto news (11121)

Around the Network