npm install各种方式的介绍

1. npm install

安装package.json中依赖的所有包。

2. npm install folder

folder 其实就是包名,从 npm 源上安装指定的包。

3. npm install

安装本地的压缩包文件。如果要安装开发中的目录,则可以使用npm link

4.npm install

根据压缩文件的url来安装,但是url必须是以http://https://开头。

5. npm install [<@scope>/]

安装指定范围下面的某个包。
如果范围前面没加@符号,则会被认为是 github 的仓库名。

1
2
npm install githubname/reponame
npm install @myorg/privatepackage

6. npm install [<@scope>/]@

加 tag

7. npm install [<@scope>/]@

加版本

8. npm install

安装 git 链接的包。

1
<protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish> | #semver:<semver>]

protocol(协议)是以下git, git+ssh, git+http, git+https, or git+file其中之一。

1
2
3
4
5
npm install git+ssh://git@github.com:npm/cli.git#v1.0.27
npm install git+ssh://git@github.com:npm/cli#semver:^5.0
npm install git+https://isaacs@github.com/npm/cli.git
npm install git://github.com/npm/cli.git#v1.0.27
GIT_SSH_COMMAND='ssh -i ~/.ssh/custom_ident' npm install git+ssh://git@github.com:npm/cli.git

9. npm install /[#]

安装 github 上的包,其实也是通过 8 中 git 获取到,然后安装。

10. npm install gitlab:/[#]

安装 gitlab 官网的包,也是通过 8 中的 git 获取,然后安装。

总结

其实npm install 可以安装各种源的包,只要设置的方法能获取包的文件即可。

文章作者: wenmu
文章链接: http://blog.wangpengpeng.site/2020/01/09/npm-install%E5%90%84%E7%A7%8D%E6%96%B9%E5%BC%8F%E7%9A%84%E4%BB%8B%E7%BB%8D/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 温木的博客
微信打赏