This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

express-buffer-response

1.1.2 • Public • Published

express-buffer-response

Buffer express response and call back when finished

Usage

var BufferRes = require('express-buffer-response');
app.use(function(req, res, next) {
    if (req.method != "GET") return next();
    // here be cache read logic
    BufferRes(res, function(err, bl) {
        // get the err from onFinished
        // and a bufferList containing the actual response chunks
        // here be cache store logic
        bl.pipe(fs.createWriteStream('cachefile'));
    });
    next();
});

Nota bene

Works with express-session since 1.0.3

License

MIT

Package Sidebar

Install

npm i express-buffer-response

Weekly Downloads

2

Version

1.1.2

License

MIT

Last publish

Collaborators

  • kapouer