-
該当ページ説明
とあるのですが、この場合は
というふうにpromisesは記述しないのではないでしょうか? |
Beta Was this translation helpful? Give feedback.
Answered by
azu
Dec 10, 2023
Replies: 1 comment 1 reply
-
そのため、コールバック関数を受け取るバージョンのAPIを使う場合は、 import * as fs from "node:fs";
fs.readFile(filePath, (error, result) => {
// コールバック版
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nagayou
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
node:fs/promises
はPromise版のAPIが含まれている一方で、コールバック版のAPIは含まれていないものになっています。そのため、コールバック関数を受け取るバージョンのAPIを使う場合は、
import * as fs from "node:fs";
とする形ですね。