Skip to content

alexbinary/glob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

4 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

glob

Simple glob with promise support ๐ŸŽ‰

npm GitHub release Build Status dependencies Status devDependencies Status

Based on glob by isaacs

Uses @alexbinary/promisify by alexbinary

Install

Install with npm or yarn :

$ npm install @alexbinary/glob
# or
$ yarn add @alexbinary/glob

Usage

let glob = require('@alexbinary/glob')

glob('/foo/**').then((filepaths) => {
  console.log('found files: ' + filepaths)
})

Documentation

let glob = require('@alexbinary/glob')

glob(pattern)

Returns files that match pattern.

This method supports both Promise and node callback style, and resolves with an array of string containing the absoute file paths to all matched files.

glob.sync(pattern)

Synchronous version.

Licence

MIT