前提:使用verdaccio在服务器搭建好了私有仓库
1、登录至私服
npm adduser --registry=http://xxx.xxx.x.xx:4873
2、发布npm包到私有仓库
修改package.json中的相关信息后
#cd 项目目录
npm publish --registry=http://xxx.xxx.x.xx:4873
登录至私服查看
3、在项目中使用
在项目的.npmrc中添加私有包源
@nettools:registry=http://10.114.32.105:4873/
如果是流水线部署,不方便修改配置,可以在构建脚本中修改
npm config set @nettools:registry http://10.114.32.105:4873/