Verdaccio 搭建npm私有仓库

发布 : 2017-09-14 分类 : 笔记

由于sinopia项目不再维护,故选取fork项目verdaccio进行搭建,使用方法一样,仅仅将sinopia换为verdaccio

环境依赖

python 2.7.x
node-gyp

1. 安装verdaccio

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
npm i -g verdaccio

配置文件 ~/.config/verdaccio/config.yaml

# 存放位置
storage: ./npmdata

# 认证
auth:
htpasswd:
file:./authpasswd
max_users:10

# 抓取镜像源
uplinks
npmjs:
url:http://registry.npm.taobao.org/

# package
packages:
"@*/*":
access:$all
publish:$authenticated
"*":
access:$all
publish:$authenticated

# 日志
logs:
- {type:stdout,format:pretty,level:http,path:./npm.log}

# 监听端口(默认没有这个选项监听4873端口)
listen: 0.0.0.0:4433

2. 启动项目

  1. 默认启动
    1
    2
    3
    4
    5
    verdaccio
    # 默认加载 ~/.config/verdaccio/config.yaml
    # 默认监听
    # 默认存储位置 ~/.config/verdaccio/storage/
    # 默认账号密码存放位置 ~/.config/verdaccio/htpasswd
  2. 终端命令启动
1
verdaccio -l 端口 -c 配置文件位置
  1. pm2进程守护
1
pm2 start `which verdaccio` --name "local_npm"

3. 项目使用

  1. 修改源
    1
    npm set registry http://0.0.0.0:4433
  2. 增加用户
1
2
3
4
npm adduser --registry http://0.0.0.0:4433
Username:
Passwd:
Emial:
  1. 发布包 和发布到npm仓库一样,登录,发布
1
2
npm login
npm publish
  1. 安装包
1
npm install @xxx/yyy

4. 注

使用 nrm 管理源 使用 nrm 增加源

1
nrm add nl http://0.0.0.0:4433

使用 nrm 切换源

1
nrm use nl

浏览 nrm 源

1
nrm ls
本文作者 : 萧逸雨
原文链接 : http://qiubo.ink/2017/09/14/Verdaccio搭建npm私有仓库/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!