postprocess

0.2.4 • Public • Published

A highly inefficient middleware that allows you to post process response bodies. Useful for things like subbing production urls with development.

installation

npm install connect-postprocess

usage

To replace all occurances of '127.0.0.1' with a variable 'IP_ADDRESS' in responses:

express.use(require('postprocess')( function(req, buf) { var re = new Regexp('127.0.0.1', 'g'); return buf.replace(re, IP_ADDRESS); });

license

Copyright (c) 2007-2011, Lloyd Hilaiel <lloyd@hilaiel.com>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i postprocess

Weekly Downloads

18

Version

0.2.4

License

none

Last publish

Collaborators

  • lloyd