customshells

3.0.1 • Public • Published

customshells

A library to simplify the use of shells in Node.js

npm version npm version npm version



npm install customshells

customshells API Documentation

Example Usage:

const customshells = require('customshells');
 
const shell = customshells.create();
 
    // Run a Node.js module
    // at every node in 
    // a directory tree.
 
    // Pipe all output
    // to 'example/output.txt'.
 
shell
    .node('myModule.js')
    .tree('example/root/node')
    .toFile('example/output.txt')
    .run();   
 

Contributors Welcome!

/customshells/

    Package Sidebar

    Install

    npm i customshells

    Weekly Downloads

    12

    Version

    3.0.1

    License

    (MIT OR Apache-2.0)

    Unpacked Size

    43.7 kB

    Total Files

    28

    Last publish

    Collaborators

    • awpatterson217