customshells
v3.0.1
Published
A Node.js library to simplify the use of shells and navigation of file systems.
Downloads
13
Maintainers
Readme
customshells
A library to simplify the use of shells in Node.js
npm install customshells
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();