我有一个需要私有(private)仓库作为依赖项的项目。因此,projectA 将其作为 "projectB": "user/repo" 包含在 package.json 中。这安装得很好,并列在 projectA node_modules 中。问题是,该 Node 在我需要依赖项功能的地方抛出并出错。错误在于 "Cannot find module projectB" 。如前所述,projectB 列在 node_modules 中。这是projectB的结构:

.
├── README.md
├── file1.js
├── file2.js
├── file3.js
├── file4.js
└── package.json

它也有自己的 node_modules,但我把它排除在外。现在,file1.js 可能如下所示:
function getResult (a, b) {
  return a + b;
}

module.exports = { getResult }

这是 projectA 的样子:
var calculate = require('projectB').file1.getResult; // I've tried this in several other ways too

"Cannot find module error" 中调用计算结果。在设置使用私有(private)仓库作为依赖项和/或要求它错误时,我是否做错了什么?

更新 projectB package.json
{
  "name": "projectB",
  "version": "1.0.0",
  "description": "Backend utility functions",
  "scripts": {
    "test": "mocha"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/user/repo.git"
  },
  "author": "Me",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com//user/repo/issues"
  },
  "homepage": "https://github.com//user/repo#readme",
  "dependencies": {
    "lodash": "^4.17.4",
    "mongodb": "^2.2.25",
    "redis": "^2.7.1",
    "winston": "^2.3.1"
  }
}

最佳答案

projectB 需要更新以设置适当的 main ,但默认情况下这将是 index.js 。您可以执行以下操作:

// projectB/index.js
exports.file1 = require("./file1");
exports.file2 = require("./file2");
exports.file3 = require("./file3");
exports.file4 = require("./file4");
index.js 除了从库文件中导出之外什么都不做,这实际上是一种非常常见的模式。

关于node.js - 安装了私有(private) repo 依赖项,但 "Cannot Find Module",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43099724/

10-13 04:42