🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

cache-header-string

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
Package was removed
Sorry, it seems this package was removed from the registry

cache-header-string

Cache control header utility

0.0.0
unpublished
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

cache-header-string

Tiny cache control header utility that parses human readable time strings into seconds.

Time based values use Template Literal Types to avoid passing invalid time string formats.

Installation

npm install cache-header-string

Usage

return new Response(..., {
  headers: {
    // sets cache control header to "public, max-age=604800, stale-while-revalidate=31536000"
    'Cache-Control': cacheHeader({
      public: true,
      maxAge: '1week',
      staleWhileRevalidate: '1year'
    })
  }
})

TimeString format

Any number followed by a timestring keyword:

  • ms, milli, millisecond, milliseconds - will parse to milliseconds
  • s, sec, secs, second, seconds - will parse to seconds
  • m, min, mins, minute, minutes - will parse to minutes
  • h, hr, hrs, hour, hours - will parse to hours
  • d, day, days - will parse to days
  • w, week, weeks - will parse to weeks
  • mon, mth, mths, month, months - will parse to months
  • y, yr, yrs, year, years - will parse to years

FAQs

Package last updated on 02 Jan 2023

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