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

exec-it

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

exec-it - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

12

index.js

@@ -1,2 +0,2 @@

#!/usr/local/bin/node
#!/usr/bin/env node

@@ -16,2 +16,12 @@ var _ = require('lodash');

if (conf.help || conf.usage) {
console.log(
'-c command to execute on remote machine\n' +
'-f read command from a file, works only if -c is not specified\n' +
'-p ssh port, default is 22\n' +
'-l username on remote machine, default is ec2-user\n' +
'-i private key, default is /a_home_dir/.ssh/id_rsa)\n')
return process.exit(0)
}
var command = (conf.c === undefined) ? fs.readFileSync(conf.f) : conf.c;

@@ -18,0 +28,0 @@

8

package.json
{
"name": "exec-it",
"version": "0.0.2",
"version": "0.0.3",
"description": "Executes a command on a remote machine using ssh connection",

@@ -8,8 +8,8 @@ "main": "index.js",

"scripts": {
"test": "mocha test/*.test.js"
"test": "mocha"
},
"author": "Roman Grudzinski",
"author": "Roman Grudzinski, Yaniv Kessler",
"repository": {
"type": "git",
"url": "https://github.com/ironSource/remote-exec.git"
"url": "https://github.com/ironSource/exec-it.git"
},

@@ -16,0 +16,0 @@ "license": "ISC",

@@ -1,2 +0,2 @@

# remote-exec2
# exec-it

@@ -3,0 +3,0 @@ ## Install

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