New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hydrophonic

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hydrophonic - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

19

lib/hydrophonic.js

@@ -199,2 +199,21 @@ const

createVolume: ({ name })=>
client({
path: "volumes/create",
method: "POST",
json: { name }
})
.thru(decodeResponse)
.map(fp.get('Name'))
.toProperty(),
removeVolume: ({ name, force = true })=>
client({
method: "DELETE",
path: `volumes/${name}`,
qs: { force }
})
.thru(decodeResponse)
.toProperty(),
createContainer: ({ name, image, cmd, link, entrypoint, env, binds, privileged = false })=> client({

@@ -201,0 +220,0 @@ path: "containers/create",

11

package.json
{
"name": "hydrophonic",
"version": "1.0.1",
"version": "1.0.2",
"description": "Streamed Docker-Engine client library, instrumented and interfaced with Kefir.js",

@@ -9,10 +9,3 @@ "main": "./lib/hydrophonic.js",

},
"keywords": [
"stream",
"engine",
"docker",
"client",
"kefirjs",
"kefir"
],
"keywords": ["stream", "engine", "docker", "client", "kefirjs", "kefir"],
"author": "Tal Weinfeld",

@@ -19,0 +12,0 @@ "license": "MIT",

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