我想在我的项目中使用npm从github安装bootstrap-loader

目前他们正在维护这个项目的两个版本,这两个版本与webpack版本1和2兼容。

我想安装版本1。我应该使用什么npm命令来安装这个?

我尝试使用下面一个,但它是不工作的。

npm install git://github.com/shakacode/bootstrap-loader.git[#v1] --Save 

当前回答

另一种方法是将以下行添加到包中。json的依赖关系:

"package-name": "user/repo#branch"

例如:

"dependencies": {
    ... other dependencies ...

    "react-native": "facebook/react-native#master"
}

然后进行npm安装或yarn安装

其他回答

从2023年开始,以下两个版本都适用于我:

npm i "github:shakacode#bootstrap-loader"

npm i "https://github.com/shakacode/tree/bootstrap-loader/"

你可以把git模式作为版本,yarn和NPM足够聪明,可以从git回购中解析。

yarn add any-package@user-name/repo-name#branch-name

或者是NPM

npm install --save any-package@user-name/repo-name#branch-name

我正在使用SSH来验证我的GitHub帐户,并在我的项目中安装了如下几个依赖项:

"dependencies": {
  "<dependency name>": "git+ssh://git@github.com/<github username>/<repository name>.git#<release version | branch>"
}

npm的Doc定义了在repo_url之后只能指定tag/version。

这里是博士:https://docs.npmjs.com/cli/install

对我来说唯一有效的方法是:

$ npm i https://github.com/{USER}/{REPO}/tarball/{BRANCH} --save

正如这里所解释的。