尝试运行nodejs服务器时,我不断收到错误模块的错误' ./ algs'。有谁知道我需要安装哪个模块才能使其工作?
错误:
$ node index
module.js:457
throw err;
^
Error: Cannot find module './algs'
at Function.Module._resolveFilename (module.js:455:15)
at Function.Module._load (module.js:403:25)
at Module.require (module.js:483:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (C:<file path>\node_modules\sshpk\lib\key.js:6:12)
at Module._compile (module.js:556:32)
at Object.Module._extensions..js (module.js:565:10)
at Module.load (module.js:473:32)
at tryModuleLoad (module.js:432:12)
at Function.Module._load (module.js:424:3)
Package.json:
{
"name": "Stock",
"version": "0.2.5",
"description": "Stock website",
"engines": {
"node": "5.9.1"
},
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"body-parser": "^1.15.2",
"ejs": "2.4.1",
"express": "4.13.3",
"firebase": "^3.5.2",
"jquery": "^3.1.1",
"multer": "^1.2.0",
"watson-developer-cloud": "^2.8.1"
},
"repository": {
"type": "git",
"url": "<git url>"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}
我尝试了npm install algs
和./algs
,但它不起作用。
答案 0 :(得分:1)
我不确定,但我不认为它是关于algs
模块或是否有任何模块algs
。
今天发生了类似的事情。我正在使用event-stream
和gulp
并尝试连接两个流。在运行代码时,我看到了一些像你这样的随机模块error
,有趣的是我甚至没有在我的代码中使用该随机模块。然后我仔细观察,发现我在两个流之间错过了一个逗号。我想error
显示缺失的模块是event-stream
(我使用过的模块)的依赖项。
我并不是说你这样的女仆错误,但仔细观察可能对你有帮助。