1.1.0 • Published 2 years ago

express-http-cache-middleware v1.1.0

Weekly downloads
311
License
ISC
Repository
github
Last release
2 years ago

Cache Middleware

Install

yarn add express-http-cache-middleware

or

npm install express-http-cache-middleware

Usage

import { HttpCacheControl } from 'express-http-cache-middleware';
...
router.get(
            '/ping',
            HttpCacheControl.Etag(() => 'ping-tag'), // :string
            HttpCacheControl.MaxAge(() => 300), // :number 
            HttpCacheControl.LastModified(() => new Date()), // :Date
            RouteController.pingResult,
        );
1.1.0

2 years ago

1.0.14

2 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago