Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

exec-test

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

exec-test - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

12

bin/cmd.js

@@ -13,12 +13,8 @@ #!/usr/bin/env node

console.log(args)
var ls = spawn(path.join(__dirname, command) /*command*/ , args /*args*/ , {} /*options, [optional]*/ );
ls.stdout.on('data', function (data) {
console.log(data.toString());
});
var sp = spawn(path.join(__dirname, command) /*command*/ , args /*args*/ , {} /*options, [optional]*/ );
sp.stdout.pipe(process.stdout);
ls.stderr.on('data', function (data) {
console.log(data.toString());
});
sp.stderr.pipe(process.stderr);
ls.on('exit', function (code) {
sp.on('exit', function (code) {
// console.log('child process exited with code ' + code);

@@ -25,0 +21,0 @@ });

{
"name": "exec-test",
"version": "0.0.3",
"version": "0.0.4",
"description": "Exec",

@@ -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