嗨尝试在我非常简单的应用程序上安装粉笔,然后我收到错误:
Error [ERR_REQUIRE_ESM]: require() of ES Module my-file-is-here and chalk\node_modules\chalk\source\index.js from my-file-is-here not supported.
Instead change the require of index.js in my-file-is-here to a dynamic import() which is available in all CommonJS modules.
at Object.<anonymous> (`my-file-is-here`) {
code: 'ERR_REQUIRE_ESM'
}
那是我的代码:
const os = require("os")
const chalk = require("chalk")
console.log("app running")