05月04, 2017

nodejs之npm私库搭建使用

npm私库搭建

标签(空格分隔): nodejs npm


创建

添加proxy

https://registry.npmjs.org https://registry.npm.taobao.org

添加hosted:自有仓库

自定义

创建group:npm-all

http://maven.ionio.cn/repository/npm-all/

使用

1.通过config命令

npm config set registry http://maven.ionio.cn/repository/npm-all/

2.命令行指定

npm --registry http://maven.ionio.cn/repository/npm-all/ info underscore

3.编辑 ~/.npmrc 加入下面内容

registry = http://maven.ionio.cn/repository/npm-all/

其它资源

  1. http://r.cnpmjs.org

    eg: npm --registry=http://r.cnpmjs.org install nodejieba

本文链接:https://blog.jnliok.com/post/nodejs-npm-oss.html

-- EOF --

Comments