@alexbinary/glob

Simple glob with promise support 🎉

Usage no npm install needed!

<script type="module">
  import alexbinaryGlob from 'https://cdn.skypack.dev/@alexbinary/glob';
</script>

README

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