使用npm私有源nexus 或者 verdaccio 的方法
Posted muzizongheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用npm私有源nexus 或者 verdaccio 的方法相关的知识,希望对你有一定的参考价值。
1. 首先搭建npm的私有源, 比如使用Nexus, https://www.sonatype.com/nexus-repository-oss
2. 下载nodejs,然后把npm路径加到环境变量里, https://nodejs.org/en/
3. 使用命令来更改私有源, 并注册账号
npm set registry http://10.6.110.103:34873
npm adduser --registry http://10.6.110.103:34873
npm profile set password --registry http://10.6.110.103:34873
4. 当注册成功后, 下一次就不需要注册了, 把adduser 和profile命令去掉, 只保留set registry。
5. 正常使用npm install等命令即可。
以上是关于使用npm私有源nexus 或者 verdaccio 的方法的主要内容,如果未能解决你的问题,请参考以下文章