NodeJS:错误:找不到模块“ ytdl-core”

时间:2018-07-13 13:16:43

标签: node.js require

我当时还在NodeJS中创建了一个discord音乐bot,同时也带有discord.js,但是每当我运行它时,都会出现此错误:(文件未命名为module.js)

module.js:549
    throw err;
    ^

Error: Cannot find module 'ytdl-core'
    at Function.Module._resolveFilename (module.js:547:15)
    at Function.Module.__load (module.js:474:25)
    at Module.require (module.js:596:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (C:\Users\Matthew\Desktop\discord bot\bot.js:2:12)
    at Module._compile (module.js:652:30)
    at Object.Module._extensions..js (module.js:663:10)
    at Module.load (module.js:565:32)
    at tryModuleLoad (module.js:505:12)
    at Function.Module._load (module.js:497:3)

起初,我以为是因为我需要像使用discord.js一样npm安装模块,但是却出现了相同的错误。

2 个答案:

答案 0 :(得分:1)

您需要但不安装ytdl-core

请使用命令安装它:

npm install ytdl-core

或使用yarn安装:

yarn add ytdl-core

答案 1 :(得分:0)

正如您所提到的,您已经完成了npm install ytdl-core,但仍然遇到错误。

  1. 请确保已安装ytdl-core
  2. 日志建议bot.js要求ytdl-core。因此,请确保您拥有
  

var ytdlCore = require(“ ytdl-core”);

这可以帮助您。或者,请添加更多代码,以便我区分错误。