syscmd
v0.1.1
Published
A small package that allows for shell commands to be executed right from Node
Downloads
6
Readme
Syscmd
A small package that allows for shell commands to be executed right from Node 👩💻
Installation
$ npm i --save syscmd
const syscmd = require('syscmd');
Usage
⭐ Standard Usage
const syscmd = require('syscmd');
syscmd('echo Hello!');
// Output:
// HellO!
⭐ Redirect Output
const syscmd = require('syscmd');
syscmd('ls -la', (err, stdout, stderr) => {
if (err)
throw err;
// Work with stdout here as output
});
⭐ No Output
const syscmd = require('syscmd');
syscmd('unzip archive.zip -d archive/', () => null);
syscmd © 2019, Tyler Holewinski. Released under the MIT License. Authored and maintained by Tyler Holewinski with help from contributors.