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

executive

Package Overview
Dependencies
Maintainers
1
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

executive - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

28

index.js

@@ -21,3 +21,4 @@ var child_process = require('child_process'),

function bufferedExec(cmd, args, opts, callback) {
var err = '',
var args = args || [],
err = '',
out = '';

@@ -60,4 +61,10 @@

opts.stdio = [0, 'pipe', 'pipe']
var child = child_process.spawn(cmd, args, opts);
var child = child_process.spawn(cmd, args, opts);
child.on('error', function(err) {
err.cmd = cmd;
callback(err);
})
child.setMaxListeners(0);

@@ -94,4 +101,10 @@ child.stdout.setEncoding('utf8');

opts.stdio = 'inherit'
var child = child_process.spawn(cmd, args, opts);
var child = child_process.spawn(cmd, args, opts);
child.on('error', function(err) {
err.cmd = cmd;
callback(err);
})
child.setMaxListeners(0);

@@ -108,6 +121,13 @@

function quietExec(cmd, args, opts, callback) {
var child = child_process.spawn(cmd, args, opts),
var args = args || [],
err = '',
out = '';
var child = child_process.spawn(cmd, args, opts);
child.on('error', function(err) {
err.cmd = cmd;
callback(err);
})
child.setMaxListeners(0);

@@ -114,0 +134,0 @@ child.stdout.setEncoding('utf8');

2

package.json
{
"name": "executive",
"version": "0.3.2",
"version": "0.3.3",
"description": "exec for the lazy",

@@ -5,0 +5,0 @@ "main": "index.js",

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