0.1.3 • Published 9 years ago

docker-event-log v0.1.3

Weekly downloads
8
License
MIT
Repository
github
Last release
9 years ago

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