Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vigour-fs-promised

vigour-io55ISC2.0.2

vigour-fs, but methods return promises

vigour-fs, promise, bluebird

readme

vigour-fs-promised

vigour-fs, but methods return promises

Usage

Same as vigour-fs, or append Async to the method name to get a promise instead

var fs = require('vigour-fs-promised')
// node-style callbacks still work
fs.exists(__filename, function (err, exists) {
  // err === null
  // exists === true
})
// Get a promise with the `Async` suffix
fs.existsAsync(__filename)
  .then(function (exists) {
    // exists === true
  })