fs-readfile-promise
Promisified version of fs.readFile
const readFilePromise = require('fs-readfile-promise');
(async () => {
const buffer = await readFile('path/to/a/file');
buffer.toString();
})();
Based on the principle of modular programming, this module has only one functionality readFile
, unlike other Promise-based file system modules. If you'd like to use a bunch of other fs
methods in the Promise way, choose other modules such as q-io and promise-fs.
Installation
Use npm.
npm install fs-readfile-promise
API
const readFilePromise = require('fs-readfile-promise');
readFile(path [, options])
path: string
Buffer
URL
integer
options: Object
(fs.readFile options) or string
(encoding)
Return: Promise<Buffer|string>
(async () => {
await readFilePromise('src.txt');
await readFilePromise('src.txt', 'utf8');
await readFilePromise('src.txt', {encoding: 'base64'});
})();
License
ISC License © 2017 Shinnosuke Watanabe