关于verdaccio:使用verdaccio搭建私有npm仓库

40次阅读

共计 301 个字符,预计需要花费 1 分钟才能阅读完成。

verdaccio 应用教程

http://npm.xxx.com 是私有化部署的 verdaccio 服务

  1. 批改 NPM 代理:npm set registry http://npm.xxx.com
  2. 注册 / 登陆 npm 账号:npm adduser –registry http://npm.xxx.com
  3. 公布 npm 包 npm publish –registry http://npm.xxx.com
  4. 我的项目中援用 npm i ydl_track

其余命令

  • npm config delete proxy // 删除 npm 代理
  • npm config delete https-proxy // 删除 npm https 代理

参考资料

  • https://verdaccio.org/
正文完
 0