sugar-glob

Sugar for using glob to find files

Usage no npm install needed!

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

README

sugar-glob

Find files using glob with a little added sugar

Install

npm install sugar-glob

Usage

var scan = require('sugar-glob')

scan({
  root: './my-folder' // relative to this file or absolute path
})
.file('**/*.html', function(file) {
  console.log(file)
})

Outputs the following for each file matching the pattern:

{ name: 'abc/my-file.html',
  dir: 'abc',
  basename: 'my-file.html',
  dirname: '/Users/will123195/my-folder/abc',
  extname: '.html',
  filename: '/Users/will123195/my-folder/abc/my-file.html' }