上传和拉取Nexus私服上的npm包

Start

你的 Nexus 上需要创建 npm 的环境, 这个自行百度。

首先 安装 nrm

nrm是专门用来管理和快速切换私人配置的registry

全局安装 nrm

npm install nrm -g --save

查看 nrm 源列表

带 * 号即为当前使用的配置

nrm ls
查看当前使用源
nrm current
添加源
nrm add 名称 远程地址或私服地址
测试源速度
nrm test 名称
切换源
nrm use 名称
删除源
nrm del 名称

上传 npm 包

package.json 直接配置上传地址
"publishConfig":{
     "registry":"地址"
}
切换到私服的源
nrm use 私服源
上传npm包
npm publish

下载 npm 包

切换到私服源
nrm use 私服源
直接安装
npm install utils

END

如果由错误请在评论区中说明, 我会及时改进, 谢谢。

你可能感兴趣的:(Nexus,npm)