easy-glob

simple and easy to use glob with instant results using fast-glob as backend and is faster than node-glob

Usage no npm install needed!

<script type="module">
  import easyGlob from 'https://cdn.skypack.dev/easy-glob';
</script>

README

Build Status

easy-glob

simple and easy to use glob with instant results using fast-glob as backend and is faster than node-glob.

Usage

Node

const glob = require('easy-glob');

// async / await
const res = await glob.read('./*.js');
console.log(res); // ['file1.js', 'file2.js']

// sync
const syncRes = glob.readSync('./*.js');
console.log(syncRes); // ['file1.js', 'file2.js']

// promise
glob.read('./*.js')
  .then(result => console.log(result)) // ['file1.js', 'file2.js']

CLI

$ glob <pattern> [options]
$ glob read <pattern> [options]
$ glob readSync <pattern> [options]

# Examples
$ glob "./*"
$ glob "./**/*.js, src/"