Skip to content

hughsk/response-distort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

response-distort

Hooks into an http.ServerResponse instance to modify its response body.

Useful, for example, to inject JavaScript into an HTML response.

Usage

NPM

distort(res, map(body, done))

Accepts res, an instance of http.ServerResponse, and map, a callback that's called when the response is ready to be modified.

map's first argument is the original response body. You should call done(null, modifiedBody) with the updated response body when you're ready to do so.

const distort = require('response-distort')
const http    = require('http')

http.createServer(function(req, res) {
  distort(res, function(body, done) {
    done(null, body.toUpperCase())
  })

  // handle the response as normal...
}).listen(function() {
  // ...
})

License

MIT. See LICENSE.md for details.

About

Hooks into an http.ServerResponse instance to modify its response body

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published