fs-exists

0.1.1 • Public • Published

fs-exists Build Status

Wraps Node.js' native fs.exists so callback is called with (err, result) instead of just (result).
Since it's just wrapping fs.exists, the err argument will always be null.

I developed the module to have a function that can be easily adapted to return a promise (for example with faithful.adapt from my Faithful project), but you may find other uses for it.

Usage

fsExists = require('fs-exists')
fsExists(path, function(err, result) {
  if (err) throw err; // err will always be null
  if(result)
    console.log "the entry exists"
  else
    console.log "the entry does not exist"
})

License

fs-exists is released under the MIT License.
Copyright (c) 2013 Meryn Stol

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.1
    48
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.1
    48
  • 0.1.0
    1
  • 0.0.1
    1

Package Sidebar

Install

npm i fs-exists

Weekly Downloads

50

Version

0.1.1

License

none

Last publish

Collaborators

  • meryn