Error: Cannot find module './algs'

Error: Cannot find module './algs'

尝试 运行 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 但它不起作用。

我不确定,但我认为这与 algs 模块无关,或者是否存在任何名为 algs.

的模块

今天我也发生了类似的事情。我正在使用 event-streamgulp 并尝试连接两个流。在 运行 代码中,我看到了一些像你的随机模块 error ,有趣的是我什至没有在我的代码中使用那个随机模块。然后我仔细观察,发现我在两个流之间缺少一个逗号。我猜 error 显示缺少的模块是 event-stream(我使用过的模块)的依赖项。

我不是说你和我一样犯错,但仔细看看可能会对你有所帮助。