docker-event-log
v0.1.3
Published
docker events api log stream
Downloads
18
Readme
docker-events
Collect docker container events
Install
npm install docker-events --save
Usage
var de = require('docker-events');
var through = require('through2');
de({}).pipe(through.obj(function(chunk, enc, cb) {
this.push(JSON.stringify(chunk));
this.push('\n');
cb();
})).pipe(process.stdout);
Acknowledgements
Sponsored by nearForm.
License
MIT