@rill/etag
v1.1.1
Published
Add ETag header to Rill responses.
Downloads
4
Maintainers
Readme
Installation
npm install @rill/etag
Example
const rill = require('rill')
const app = rill()
const fresh = require('@rill/fresh')
const etag = require('@rill/etag')
// ETag works together with fresh
app.use(fresh())
app.use(etag())
// Response will be sent with ETag header.
app.use((ctx, next) => {
this.body = 'Hello World'
})
app.listen(3000)
Contributions
- Use
npm test
to run tests.
Please feel free to create a PR!