我正在尝试使用包但它不在npm中。我想把我需要的软件包上传到npm,但我不知道上传一个不属于我的软件包是不是一个好主意。 你觉得怎么样?
答案 0 :(得分:0)
为什么不从Github加载它。 NPM在package.json文件中支持此功能。
示例:
{
"name": "foo",
"version": "0.0.0",
"dependencies": {
"express": "expressjs/express",
"mocha": "mochajs/mocha#4727d357ea",
"module": "user/repo#feature\/branch"
}
}