pd4d10 / promisify-all

Promisify all Node.js builtin async methods

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

promisify-all Build Status

Promisify all Node.js builtin async methods using util.promisify

Installation

npm install --save promisify-all

Usage

Add the following code to the start of your Node.js project:

const promisifyAll = require('promisify-all')

promisifyAll()

Then you have promisified methods such as fs.readFileAsync and fs.writeFileAsync:

const fs = require('fs')

async function main() {
  try {
    const content = await fs.readFileAsync('/path/to/file', 'utf8')
    console.log('Read file succeed! Content: ', content)

    await fs.writeFileAsync('/path/to/another/file', content)
    console.log('Write file succeed!')
  } catch (err) {
    // Handle errors here
  }
}

main()

Options

suffix

Call promisifyAll as follows to customize suffix. The default suffix is Async.

promisifyAll({
  suffix: 'YourSuffix'
})

Promisified methods list

See here

License

MIT

About

Promisify all Node.js builtin async methods

License:MIT License


Languages

Language:JavaScript 100.0%