1.0.9 • Published 6 years ago

fs.promiser v1.0.9

Weekly downloads
1,008
License
MIT
Repository
github
Last release
6 years ago

fs.promiser

npm : fs.promiser

npm version coverage status build status npm downloads

Minimal promise wrapper on top of fs module.

Usage

Note : node version >= 8.10

fs.readFile('/path/to/file.txt', options)
    .then((data) => {
        ... //Do Something
    })
    .catch((err) => {
        console.log('Error', err);
    })

Installation

npm install fs.promiser

Test

npm test