New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

docker-event-log

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docker-event-log

docker events api log stream

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

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

Keywords

docker

FAQs

Package last updated on 22 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts