Socket
Socket
Sign inDemoInstall

dockerode

Package Overview
Dependencies
Maintainers
1
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dockerode - npm Package Compare versions

Comparing version 3.3.4 to 3.3.5

.github/FUNDING.yml

6

lib/docker.js

@@ -30,3 +30,7 @@ var EventEmitter = require('events').EventEmitter,

this.modem = new Modem(opts);
if (opts && opts.modem) {
this.modem = opts.modem;
} else {
this.modem = new Modem(opts);
}
this.modem.Promise = plibrary;

@@ -33,0 +37,0 @@ };

2

lib/exec.js

@@ -132,3 +132,3 @@ var util = require('./util');

this.modem.dial(optsf, function(err, data) {
if (err) return callback(err, data);
if (err) return args.callback(err, data);
args.callback(err, data);

@@ -135,0 +135,0 @@ });

@@ -28,3 +28,3 @@ var util = require('./util');

method: 'GET',
abortSignal: args.abortSignal,
abortSignal: args.opts.abortSignal,
statusCodes: {

@@ -31,0 +31,0 @@ 200: true,

{
"name": "dockerode",
"description": "Docker Remote API module.",
"version": "3.3.4",
"version": "3.3.5",
"author": "Pedro Dias <petermdias@gmail.com>",

@@ -26,7 +26,7 @@ "maintainers": [

"memorystream": "~0.3.0",
"mocha": "^7.1.0"
"mocha": "^10.2.0"
},
"main": "./lib/docker",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec --exit"
"test": "./node_modules/mocha/bin/mocha.js -R spec --exit"
},

@@ -33,0 +33,0 @@ "license": "Apache-2.0",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc