服务器Linux搭建NPM私有仓库-verdaccio
在Linux服务器上搭建Verdaccio私有npm仓库的步骤如下:
- 使用npm安装Verdaccio:
npm install -g verdaccio
- 启动Verdaccio服务:
verdaccio
- (可选)配置Verdaccio,编辑配置文件
~/.config/verdaccio/config.yaml
,可以修改端口、存储位置等。 - (可选)如果需要使用HTTPS,生成一个自签名SSL证书或者使用已有的证书,并在配置文件中启用。
- 通过设置npm来使用私有仓库,你可以使用
npm set
命令或者修改.npmrc
文件。例如:
npm set registry http://localhost:4873
- 现在你可以发布包到私有仓库,并从私有仓库安装包了。
示例代码:
安装Verdaccio:
npm install -g verdaccio
启动Verdaccio:
verdaccio
设置npm使用私有仓库:
npm set registry http://localhost:4873
发布包到私有仓库:
npm publish --registry http://localhost:4873
从私有仓库安装包:
npm install my-package --registry http://localhost:4873
评论已关闭