cnpm 私服搭建(基于docker)
备注:
使用docker-compose 进行安装
1. 代码clone
git clone https://github.com/cnpm/cnpmjs.org.git
2. docker build
docker-compose build
备注: 注意需要进行修改 docs/dockerize/config.js
registryHost: 'ip:7001'
scopes: [ '@cnpm', '@cnpmtest', '@cnpm-test','@k8s-net' ],
3. docker-compose 运行
docker-compose up -d
4. 配置私服
cnpm set registry http://localhost:7001
5. 创建npm 包&&上传
npm init -y
nano package.json name 格式 @npm 可以在服务启动的时候进行调整
npm login
npm publish
6. 参考资料
https://npm.taobao.org/
https://github.com/cnpm/cnpmjs.org/wiki/Deploy-a-private-npm-registry-in-5-minutes