Minimal promise wrapper on top of fs module.
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);
})
npm install fs.proms
npm test