Answers:
您尝试的命令中还有多余的方括号。
要从v1
分支机构安装最新版本,可以使用:
npm install git://github.com/shakacode/bootstrap-loader.git#v1 --save
npm install https://github.com/username/package#3d0a21cc
在哪里3d0a21cc
。我在这里
做就是了:
npm install username/repo#branchName --save
例如 (我的用户名是betimer)
npm i betimer/rtc-attach#master --save
// and what will appear in your package.json will be:
"rtc-attach": "github:betimer/rtc-attach#master"
我还想提到一件事:检入package.json以使构建服务器自动提取更改不是一个好主意。相反,将npm i(第一个命令)放入build命令中,然后让服务器安装并替换软件包。
npm install <folder>
我正在使用SSH验证我的GitHub帐户,并在我的项目中安装了几个依赖项,如下所示:
"dependencies": {
"<dependency name>": "git+ssh://git@github.com/<github username>/<repository name>.git#<release version | branch>"
}
尝试了建议的答案,但仅使用此前缀方法起作用:
npm i github:user/repo.git#version --save -D