void666 / fs.promise

Promise wrapper on top of fs module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Promise wrapper on top of fs module

License:MIT License


Languages

Language:JavaScript 100.0%