我在Windows 10中通过npm安装了mysql.js,但是我在node.js CLI中获得了mysql模块,但没有从命令行获得。我尝试了使用本地配置在mysql.js官方网站上提供的示例代码,它产生了成功的连接并出现了module not found
错误。我不知所措要去哪里。
Error: Cannot find module 'mysql'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
at Function.Module._load (internal/modules/cjs/loader.js:507:25)
at Module.require (internal/modules/cjs/loader.js:637:17)
at require (internal/modules/cjs/helpers.js:22:18)
at Object.<anonymous> (d:\projects\prj_nodetest\234.js:1:77)
at Module._compile (internal/modules/cjs/loader.js:689:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:700:10)
at Module.load (internal/modules/cjs/loader.js:599:32)
at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
at Function.Module._load (internal/modules/cjs/loader.js:530:3)
我还尝试了只有一行的文件:
const mysql = require('mysql');
具有相同的错误。