npm.io
1.1.2 • Published 11 years ago

express-buffer-response

Licence
MIT
Version
1.1.2
Deps
2
Vulns
1
Weekly
0
Stars
1
DeprecatedThis package is deprecated

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

Keywords