node-ipc/node_modules/node-cmd
2015-09-27 03:32:14 -07:00
..
example fleshing out testHarness 2014-09-02 23:25:35 -07:00
cmd.js fleshing out testHarness 2014-09-02 23:25:35 -07:00
package.json added js-message dep and rawBuffer examples 2015-09-27 03:32:14 -07:00
README.md fleshing out testHarness 2014-09-02 23:25:35 -07:00

#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

method arguments functionality
run command runs a command asynchronously
get command,callback runs 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)
    }
);