You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
npm 7.21.1 node16.9.1 Ubuntu 22.04.1 LTS can not run, because The requested module 'wechaty' is a CommonJS module, which may not support all module.exports as named exports. Could every body tell me why?
#27
Closed
slongli opened this issue
Dec 11, 2022
· 4 comments
import { WechatyBuilder, ScanStatus, log } from "wechaty";
^^^^^^^^^^^^^^
SyntaxError: Named export 'WechatyBuilder' not found. The requested module 'wechaty' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
at ModuleJob._instantiate (node:internal/modules/esm/module_job:124:21)
at async ModuleJob.run (node:internal/modules/esm/module_job:179:5)
at async Loader.import (node:internal/modules/esm/loader:178:24)
at async Object.loadESM (node:internal/process/esm_loader:68:5)
at async handleMainPromise (node:internal/modules/run_main:63:12)
The text was updated successfully, but these errors were encountered:
------------------ Original message ------------------
From: "ronaldox";
Sendtime: Tuesday, Dec 13, 2022 2:28 AM
To: "wangrongding/wechat-bot";
Cc: " ***@***.***>; "Author";
Subject: Re: [wangrongding/wechat-bot] npm 7.21.1 node16.9.1 Ubuntu 22.04.1 LTS can not run, because The requested module 'wechaty' is a CommonJS module, which may not support all module.exports as named exports. Could every body tell me why? (Issue #27)
Try using the node LTS version
我和他是一样的错,更换了nodejs最新LTS版本也不行
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
import { WechatyBuilder, ScanStatus, log } from "wechaty";
^^^^^^^^^^^^^^
SyntaxError: Named export 'WechatyBuilder' not found. The requested module 'wechaty' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'wechaty';
const { WechatyBuilder, ScanStatus, log } = pkg;
The text was updated successfully, but these errors were encountered: