pull-glob
extended globs as pull-streams
Last updated 7 years ago by dominictarr .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install pull-glob 
SYNC missed versions from official npm registry.

pull-glob

streaming extended glob.

use with pull-stream

examples

var pull = require('pull-stream')
var glob = require('pull-glob')

function glob_log (name, pattern) {
  pull(glob(pattern), pull.collect(function (err, ary) {
    if(err) throw err
    console.log('name:', name, 'pattern:', pattern)
    console.log(ary)
  })
}


glob_log('current dir', '.')
glob_log('js in current dir', '*.js')
glob_log('everything under current dir', '**')
glob_log('all js under current dir', '**/*.js')
glob_log('parent directories', '...')
glob_log('hidden files', '.../.*')
glob_log('available modules', '.../node_modules/*')
glob_log('local package files', '.../{package,component}.json')

stopping early

because this module uses pull-streams, it's lazy, so you can do queries like the following:

//find the first package.json in a parent directory.
pull(glob('.../package.json'), pull.take(1), log())

And you will retrive only the first item, and will not do any extra IO. This is hugely useful when doing a large traversal...

collect node_module tree

pull(
  glob('**/node_modules/*/package.json'),
  pull.collect(function (e, arr) {
    console.log(arr)
  })
)

License

MIT

Current Tags

  • 1.0.7                                ...           latest (7 years ago)

8 Versions

  • 1.0.7                                ...           7 years ago
  • 1.0.6                                ...           9 years ago
  • 1.0.5                                ...           9 years ago
  • 1.0.4                                ...           9 years ago
  • 1.0.3                                ...           9 years ago
  • 1.0.2                                ...           9 years ago
  • 1.0.1                                ...           11 years ago
  • 1.0.0                                ...           12 years ago
Maintainers (1)
Downloads
Total 6
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (0)
None
Dependents (1)

© 2010 - cnpmjs.org x YWFE | Home | YWFE