Skip to content

[コラム] Node.jsのエラーファーストコールバックのimportについて #1705

Closed Answered by azu
nagayou asked this question in 質問
Discussion options

You must be logged in to vote

node:fs/promises はPromise版のAPIが含まれている一方で、コールバック版のAPIは含まれていないものになっています。

そのため、コールバック関数を受け取るバージョンのAPIを使う場合は、import * as fs from "node:fs";とする形ですね。

import * as fs from "node:fs";
fs.readFile(filePath, (error, result) => { 
  // コールバック版
})

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@nagayou
Comment options

Answer selected by nagayou
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
質問
2 participants
Converted from issue

This discussion was converted from issue #1697 on December 10, 2023 11:29.