0.0.1 • Published 10 years ago

append-header v0.0.1

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

append-header

Extends a response object with an appendHeader method.

Usage

var app = require('express')()
require('append-header')(app.response)

app.use(express.compress())
app.use(function (req, res, next) {
  res.appendHeader('Vary', 'Accept-Language')
  next()
})

The server response will now have a Vary header set to Accept-Encoding, Accept-Language.

Extending all HTTP response objects

var http = require('http')
require('append-header')(http.ServerResponse.prototype)

Install

$ npm install append-header

License

MIT