我刚刚发送了一个Node.js应用程序的文件(在线没有问题),我正在尝试在我的Windows机器上进行设置。
我有Node服务器正在运行,但我很难尝试实际加载应用程序。我可以使用Node命令提示符导航到目录,并且有一个app.js
(加上config
,components
等文件夹),我一直试图运行,但是我我收到以下错误:
D:\my-directory\game-master>node app.js
module.js:327
throw err;
^
Error: Cannot find module 'config'
at Function.Module._resolveFilename (module.js:325:15)
at Function.Module._load (module.js:276:25)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (D:\posao\aktivni projekti\smart rebellion\game-master
\app.js:7:10)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Function.Module.runMain (module.js:441:10)
问题是,目录中没有名为module.js
的文件。我认为它是一个内置的Node.js文件,但是我该如何解决这个问题呢?
我对该错误的最佳解读是,某处应该有一个config.js
文件,但这没有意义,因为这些完全相同的文件在远程服务器上没有使用hickup。
答案 0 :(得分:0)
如果您想要require('./config')
,其中config
是目录,则文件./config/index.js
应该存在。
但是,您不能require('config')
,因为node.js会尝试在node_modules
中找到它。
查看node.js modules documentation,其中require
算法得到了很好的解释。