Socket
Socket
Sign inDemoInstall

node-cmd

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

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.


Version published
Weekly downloads
24K
decreased by-3.83%
Maintainers
1
Install size
4.04 kB
Created
Weekly downloads
 

Readme

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.

#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){
            console.log('the node-cmd cloned dir contains these files :\n\n',data)
        }
    );

Keywords

FAQs

Last updated on 25 Jan 2016

Did you know?

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc