node-cmd-promise

1.0.0 • Public • Published

node-cmd-promise

NodeJS interface to allow you to run bash commands asynchronously with Promises.

Use

const cmd = require('node-cmd-promise');
 
cmd('ls -a')
  .then((stdout, stderr) => {
    console.log("stdout", stdout);
    console.log("stderr", stderr);
  })
  .catch((error) => console.log("error", error))

Readme

Keywords

Package Sidebar

Install

npm i node-cmd-promise

Weekly Downloads

67

Version

1.0.0

License

MIT

Last publish

Collaborators

  • robhicks