node -v
npm -v
pm2 -v
npm install verdaccio -g
verdaccio -V 测试一下是否安装成功
vim /root/.config/verdaccio/config.yaml
ps: 在对应目录下,未找到配置文件config.yaml,可执行下verdaccio命令,进行第一初始
listen:
0.0.0.0:4873
其他配置
# - localhost:4873 # default value
# - http://localhost:4873 # same thing
- 0.0.0.0:4873 # listen on all addresses (INADDR_ANY)
# - https://example.org:4873 # if you want to use https
# - [::1]:4873 # ipv6
# - unix:/tmp/verdaccio.sock # unix socket
可直接执行verdaccio,启动服务。
➜ Desktop verdaccio
warn --- config file - /Users/chenwei/.config/verdaccio/config.yaml
warn --- "crypt" algorithm is deprecated consider switch to "bcrypt". Read more: https://github.com/verdaccio/monorepo/pull/580
info --- plugin successfully loaded: verdaccio-htpasswd
info --- plugin successfully loaded: verdaccio-audit
warn --- http address - http://localhost:4873/ - verdaccio/5.18.0
以上是显示的界面信息及客户端请求记录,但是为了更好的管理服务,需要使用pm2。
pm2 start verdaccio 启动
➜ Desktop pm2 start verdaccio
[PM2] Applying action restartProcessId on app [verdaccio](ids: [ 0 ])
[PM2] [verdaccio](0) ✓
[PM2] Process successfully started
┌─────┬──────────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐
│ id │ name │ namespace │ version │ mode │ pid │ uptime │ ↺ │ status │ cpu │ mem │ user │ watching │
├─────┼──────────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤
│ 0 │ verdaccio │ default │ N/A │ fork │ 35320 │ 0s │ 1 │ online │ 0% │ 1.1mb │ xxxxxx │ disabled │
└─────┴──────────────┴─────────────┴─────────┴─────────┴──────────┴────────┴──────┴───────────┴──────────┴──────────┴──────────┴──────────┘
pm2常用命令:
npm install -g nrm
nrm add test_mirror_name http://127.0.0.1:4873/
nrm use test_mirror_name
npm publish # 在自己要发布的包中路径下打这个命令
成功的话在你的项目里
npm install -seve-dev (vue-gitment项目名)