JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 17
  • Score
    100M100P100Q36889F
  • License (MIT OR Apache-2.0)

A Node.js library to simplify the use of shells and navigation of file systems.

Package Exports

  • customshells

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (customshells) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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!