1.0.2 • Published 6 years ago

fs.proms v1.0.2

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

fs.proms

npm : fs.proms

npm version coverage status build status npm downloads

Minimal promise wrapper on top of fs module.

Usage

Note : node version >= 8.10

const fs = require('fs.proms');

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

Installation

npm install fs.proms

Test

npm test