我的 node.js 给我错误,我不明白是什么问题
My node.js gives me error and I dont understand what's the problem
这是错误请帮助我。我尝试 npm install @discord-api-types/v9 但没有任何改变。我正在尝试创建一个不和谐的机器人,但是当我在终端输入节点 index.js 时,它一直给我错误。
node:internal/modules/cjs/loader:936
throw err;
^
Error: Cannot find module '@discord-api-types/v9'
Require stack:
- C:\Users\MONSTER\Desktop\Rayman Music\index.js
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
at Function.Module._load (node:internal/modules/cjs/loader:778:27)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:102:18)
at Object.<anonymous> (C:\Users\MONSTER\Desktop\Rayman Music\index.js:4:20)
at Module._compile (node:internal/modules/cjs/loader:1103:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1157:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:77:12) {
code: 'MODULE_NOT_FOUND',
requireStack: [ 'C:\Users\MONSTER\Desktop\Rayman Music\index.js' ]
}```
MODULE_NOT_FOUND
错误意味着它找不到包或文件,在本例中是包。
通过
确保你有包discord-api-types
npm install discord-api-types
这可能是 npm 版本问题。
在旧版本中,您需要在命令中写一个标志来将模块添加到依赖项中。
npm install <module> --save
检查版本,但在package.json文件
中执行不带标志的npm install命令后,首先检查该模块是否已添加到依赖项中
这是错误请帮助我。我尝试 npm install @discord-api-types/v9 但没有任何改变。我正在尝试创建一个不和谐的机器人,但是当我在终端输入节点 index.js 时,它一直给我错误。
node:internal/modules/cjs/loader:936
throw err;
^
Error: Cannot find module '@discord-api-types/v9'
Require stack:
- C:\Users\MONSTER\Desktop\Rayman Music\index.js
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
at Function.Module._load (node:internal/modules/cjs/loader:778:27)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:102:18)
at Object.<anonymous> (C:\Users\MONSTER\Desktop\Rayman Music\index.js:4:20)
at Module._compile (node:internal/modules/cjs/loader:1103:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1157:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:77:12) {
code: 'MODULE_NOT_FOUND',
requireStack: [ 'C:\Users\MONSTER\Desktop\Rayman Music\index.js' ]
}```
MODULE_NOT_FOUND
错误意味着它找不到包或文件,在本例中是包。
通过
确保你有包discord-api-typesnpm install discord-api-types
这可能是 npm 版本问题。
在旧版本中,您需要在命令中写一个标志来将模块添加到依赖项中。
npm install <module> --save
检查版本,但在package.json文件
中执行不带标志的npm install命令后,首先检查该模块是否已添加到依赖项中