You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

node-cmd

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-cmd

Simple commandline/terminal interface to allow you to run cli or bash style commands as if you were in the terminal.

1.3.0
Source
npmnpm
Version published
Maintainers
2
Created
Source

#node-cmd

Node.js commandline/terminal interface.

Simple commandline or terminal interface to allow you to run cli or bash style commands as if you were in the terminal.

Run commands asynchronously, and if needed can get the output as a string.

npm info : See npm trends and stats for node-cmd
node-cmd npm version supported node version for node-cmd total npm downloads for node-cmd monthly npm downloads for node-cmd npm licence for node-cmd

RIAEvangelist

GitHub info :
node-cmd GitHub Release GitHub license node-cmd license open issues for node-cmd on GitHub

Package details websites :

  • GitHub.io site. A prettier version of this site.
  • NPM Module. The npm page for the node-cmd module.

This work is licenced via the DBAD Public Licence.

#Methods

methodargumentsfunctionality
runcommandruns a command asynchronously
getcommand,callbackruns a command asynchronously, when the command is complete all of the stdout will be passed to the callback

#Examples


    var cmd=require('node-cmd');

    cmd.get(
        'pwd',
        function(data){
            console.log('the current working dir is : ',data)
        }
    );

    cmd.run('touch example.created.file');

    cmd.get(
        'ls',
        function(data){
            console.log('the current dir contains these files :\n\n',data)
        }
    );

    cmd.get(
        `
            git clone https://github.com/RIAEvangelist/node-cmd.git
            cd node-cmd
            ls
        `,
        function(data, err, stderr){
            if (!err) {
               console.log('the node-cmd cloned dir contains these files :\n\n',data)
            } else {
               console.log('error', err)
            }
            
        }
    );

Keywords

commandline

FAQs

Package last updated on 14 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.