1.0.6 • Published 10 years ago

squish-squash v1.0.6

Weekly downloads
1
License
MIT
Repository
-
Last release
10 years ago

squish-squash

override a command for for all child processes

Codeship Status for cdaringe/squish-squash

install

npm install squish-squash [--save|--save-dev]

example

const ss = require('squish-squash');
// example of squashing system or user cmds with arbitrary command
ss({
    squash: 'node',
    cmdpath: '/path/to/my/other/node/or/Electron'
});

// examples of squashing system or user cmds with system commands
// when any process calls `more`, `less` will actually run
ss({
    squash: 'more',
    syscmd: 'less'
});
// prefer the silver-searcher over grep
ss({
    squash: 'grep',
    syscmd: 'ag'
});

why

Because sometimes you gotta. Use with caution!

todo

  • windoze support! if you know windows, it'd be great to get your input
1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago