1.0.0 • Published 7 years ago

node-cmd-promise v1.0.0

Weekly downloads
17
License
MIT
Repository
github
Last release
7 years ago

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))