利用Sinopia搭建私有npm包

1.安装sinopia包

npm install -g sinopia

如果是Windows系统用上面的方式安装sinopia很有可能报错,推荐使用下面方式安装:

npm install sinopia --no-optional --no-shrinkwrap

在Windows下的依赖crypt3和FS-EXT可能无法编译和不可用。它们是可选的,不会影响Sinopia的使用。我们使用上面的安装方式

2.配置npm

npm set registry http://localhost:4873/

npm set ca null
# if you use HTTPS, add an appropriate CA information
# ("null" means get CA list from OS)

3.启动sinopia

sinopia

4.打开浏览器地址 http://localhost:4873/ 

 

 

 

 

 

 

5. npm 注册  登录 

6. 在本地的目录执行  npm  login  进行登录  

7. 发布    npm publish

 

 

报错 :

 

 

 

 

解决: 发布不要使用国内镜像 

npm config set registry http://registry.npmjs.org/

 

发布成功:

 

 

posted @ 2021-01-21 10:19  1点  阅读(344)  评论(0编辑  收藏  举报