Skip to content

Latest commit

 

History

History
61 lines (45 loc) · 1.32 KB

File metadata and controls

61 lines (45 loc) · 1.32 KB

Enforce require("fs").promises (n/prefer-promises/fs)

Since Node.js v11.14.0, require("fs").promises API has been stable. Promise API and async/await syntax will make code more readable than callback API.

📖 Rule Details

This rule disallows callback API in favor of promise API.

Examples of 👎 incorrect code for this rule:

/*eslint n/prefer-promises/fs: [error]*/
const fs = require("fs")

function readData(filePath) {
    fs.readFile(filePath, "utf8", (error, content) => {
        //...
    })
}
/*eslint n/prefer-promises/fs: [error]*/
import fs from "fs"

function readData(filePath) {
    fs.readFile(filePath, "utf8", (error, content) => {
        //...
    })
}

Examples of 👍 correct code for this rule:

/*eslint n/prefer-promises/fs: [error]*/
const { promises: fs } = require("fs")

async function readData(filePath) {
    const content = await fs.readFile(filePath, "utf8")
    //...
}
/*eslint n/prefer-promises/fs: [error]*/
import { promises as fs } from "fs"

async function readData(filePath) {
    const content = await fs.readFile(filePath, "utf8")
    //...
}

🔎 Implementation