ezzy-fs

An enhancement to the basic fs library

Usage no npm install needed!

<script type="module">
  import ezzyFs from 'https://cdn.skypack.dev/ezzy-fs';
</script>

README

ezzy-fs

Build Status Coverage Status

This wrapper enhances the fs module to include additional methods that return promises, rather than passing callbacks.

    const fs = require('ezzy-fs');
    
    fs.readdirPromise(__dirname)
        .then(items => {
          // ... handle items
        });