shell-find
v1.0.0
Published
Node bindings for shell find utility
Readme
shell-find 
Node bindings for the shell find utility. Way faster and way less portable than node-glob.
npm install shell-findshellFind = require('shell-find');
shellFind('src')
.name('*.coffee')
.prune('node_modules')
.exec(function(err, filenames) {
console.log(filenames);
});
Check out the tests for more examples.
