外观
导入 Node.js 内置模块时更喜欢使用 node:protocol
node:protocol
对于此规则,以下为 **不正确** 的代码示例
import fs from "fs";
对于此规则,以下为 **正确** 的代码示例
import fs from "node:fs";