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

@travetto/exec

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/exec - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

2

package.json

@@ -25,3 +25,3 @@ {

},
"version": "0.1.4"
"version": "0.1.5"
}

@@ -17,19 +17,13 @@ import * as assert from 'assert';

console.log('Hello');
await container.create(['-i'], ['/bin/sh']);
await container.start();
try {
await container.create(['-i'], ['/bin/sh']);
await container.start();
const [proc, prom] = await container.exec(['-i'], ['gm', 'convert', '-resize 100x50', '-', '-']);
const [proc, prom] = await container.exec(['-i'], ['gm', 'convert', '-resize 100x50', '-', '-']);
createReadStream(path.resolve(`${os.homedir}/Documents/download.jpeg`)).pipe(proc.stdin);
createReadStream(path.resolve(`${os.homedir}/Documents/download.jpeg`)).pipe(proc.stdin);
proc.stdout.pipe(process.stdout);
proc.stdout.pipe(process.stdout);
await prom;
} catch (e) {
console.log('Error', e);
}
await prom;
}
}
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