vigour-fs-promised

2.0.2 • Public • Published

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
  })

Package Sidebar

Install

npm i vigour-fs-promised

Weekly Downloads

13

Version

2.0.2

License

ISC

Last publish

Collaborators

  • vigour-io