$ npm install glob-whatev
A quick and dirty synchronous file globbing utility based on minimatch.
I wanted to make grunt work on Windows. Unfortunately, node-glob doesn't work on Windows, and miniglob isn't synchronous.
I'd imagine that this works with any path that minimatch supports. While this includes some basic unit tests, I'm hoping that minimatch has good coverage.
This module isn't terribly efficient. But that's ok, because I'm using it for relatively small folder structures. Maybe someone will make this one better (patches welcome!). Or maybe even write a better one, and then I'll use that instead. But yeah, don't use this on a really large directory structure.
This code should work just fine in Node.js:
First, install the module with: npm install glob-whatev
var globsync = require('glob-whatev');
globsync.glob('foo/**/*.js') // some boolean
// Basically,
globsync.glob(globPattern [, minimatchOptions]) // some boolean
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
2012/01/11 - v0.1.0 - First official release.
Copyright (c) 2012 "Cowboy" Ben Alman
Licensed under the MIT license.
http://benalman.com/about/license/
© 2010 - cnpmjs.org x YWFE | Home | YWFE