@tinyhttp/etag
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

@tinyhttp/etag

npm (scoped) npm

A rewrite of etag module.

This module generates HTTP ETags (as defined in RFC 7232) for use in HTTP responses.

Install

pnpm i @tinyhttp/etag

API

import { eTag } from '@tinyhttp/etag'

eTag(entity, [options])

Generate a strong ETag for the given entity. This should be the complete body of the entity. Strings, Buffers, and fs.Stats are accepted. By default, a strong ETag is generated except for fs.Stats, which will generate a weak ETag (this can be overwritten by options.weak).

res.setHeader('ETag', eTag(body))

Options

eTag accepts these properties in the options object.

weak

Specifies if the generated ETag will include the weak validator mark (that is, the leading W/). The actual entity tag is the same. The default value is false, unless the entity is fs.Stats, in which case it is true.

Package Sidebar

Install

npm i @tinyhttp/etag

Weekly Downloads

77,911

Version

2.1.1

License

MIT

Unpacked Size

6.33 kB

Total Files

7

Last publish

Collaborators

  • dropthebeatbro