1. node-cmd
Simple commandline/terminal/shell interface to allow you to run cli or bash style commands as if you were in the terminal.
node-cmd
Package: node-cmd
Created by: RIAEvangelist
Last modified: Sat, 24 Jun 2023 02:18:11 GMT
Version: 5.0.0
License: MIT
Downloads: 131,413
Repository: https://github.com/RIAEvangelist/node-cmd

Install

npm install node-cmd
yarn add node-cmd

node-cmd

Node.js commandline/terminal interface.

Simple commandline, terminal, or shell 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 Stats

npm info :
NPM
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 :

This work is licenced via the MIT Licence.

Methods

method arguments functionality returns
run command, callback runs a command asynchronously args for callback err,data,stderr
runSync command runs a command synchronously obj {err,data,stderr}

Examples

 
//*nix

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

//*nix supports multiline commands
    
    cmd.runSync('touch ./example/example.created.file');

    cmd.run(
        `cd ./example
ls`,
        function(err, data, stderr){
            console.log('examples dir now contains the example file along with : ',data)
        }
    );

 
//Windows

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

//Windows multiline commands are not guaranteed to work try condensing to a single line.
    
    const syncDir=cmd.runSync('cd ./example & dir');

    console.log(`
    
        Sync Err ${syncDir.err}
        
        Sync stderr:  ${syncDir.stderr}

        Sync Data ${syncDir.data}
    
    `);

    cmd.run(`dir`,
        function(err, data, stderr){
            console.log('the node-cmd dir contains : ',data)
        }
    );

 
//clone this repo!

    var cmd=require('node-cmd');
    
    const syncClone=cmd.runSync('git clone https://github.com/RIAEvangelist/node-cmd.git');

    console.log(syncClone);
    

Getting the CMD Process ID

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

    var process=cmd.run('node');
    console.log(process.pid);

Running a python shell from node

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

const processRef=cmd.run('python -i');
let data_line = '';

//listen to the python terminal output
processRef.stdout.on(
  'data',
  function(data) {
    data_line += data;
    if (data_line[data_line.length-1] == '\n') {
      console.log(data_line);
    }
  }
);

const pythonTerminalInput=`primes = [2, 3, 5, 7]
for prime in primes:
    print(prime)

`;

//show what we are doing
console.log(`>>>${pythonTerminalInput}`);

//send it to the open python terminal
processRef.stdin.write(pythonTerminalInput);

Output :

 
>>>primes = [2, 3, 5, 7]
for prime in primes:
    print(prime)


2
3
5
7


RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code