Skip to content

erwijet/syscmd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Syscmd

A small package that allows for shell commands to be executed right from Node 👩‍💻

npm version NPM Downloads
GitHub issues GitHub pull-requests MIT license
RunKit state Gitter GitHub watchers GitHub stars

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 (MIT) 2019, Tyler Holewinski. Released under the MIT License.
Authored and maintained by Tyler Holewinski with help from contributors.

GitHub @erwijet  ·  Instagram @erwijet

About

A small package that allows for shell commands to be executed right from Node

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published