Promisified Node.js
This is a simple module to save you from manually calling util.promisify
.
For every Node.js module that contains async functions, there is an equivalent
module in promisified
where those functions have been promisified using
util.promisify
.
const fs = ; { const data = await fs;} ;
Note that in some cases there are already promisified versions built into
Node.js itself, such as fs.promises
, also available as
require('fs/promises')
in Node.js v14. This package does not use those; it
always uses util.promisify
.