精华 5分钟搭建一个私有 npm registry
发布于 3天前 作者 fengmk2 734 次浏览 来自 分享

持续更新: https://github.com/cnpm/cnpmjs.org/wiki/Deploy-a-private-npm-registry-in-5-minutes

Install cnpmjs.org and cnpm from npm

$ npm install -g --build-from-source cnpmjs.org cnpm sqlite3

If you’re in China, maybe you should use China mirror

$ npm install -g --build-from-source \
  --registry=http://registry.npm.taobao.org \
  --disturl=http://npm.taobao.org/mirrors/node
  cnpmjs.org cnpm sqlite3

Start cnpmjs.org server with configs

  • admins: myname,othername
  • scopes: my-company-name,other-name
  • default ports: 7001-registry, 7002-web
$ nohup cnpmjs.org start --admins='myname,othername' --scopes='@my-company-name,@other-name' &

Change cnpm default registry to your private registry

$ cnpm set registry http://localhost:7001

Use cnpm to login yourself on your private registry

$ cnpm login
Username: myname
Password: ***
Email: (this IS public) [email protected]

Publish your private package now!

Private package should be a scoped package

$ cd /tmp
$ mkdir helloworld && cd helloworld
$ cnpm init
name: (helloworld) @my-company-name/helloworld
version: (1.0.0)

{
  "name": "@my-compny-name/helloworld",
  "version": "1.0.0",
  "description": "my first scoped package",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

$ cnpm publish
+ @my-company-name/[email protected]

View your private package

You can visit with bowsers

$ open http://localhost:7002/@my-company-name/helloworld

Or use cnpm info

$ cnpm info

All public packages available directly

You can install all public packages from npmjs.org

$ cnpm install mocha
14 回复

亲,node modules在本地安装次数太多了,有更好的办法么?

-g 不算

@i5ting 没太看明白,是说依赖太多了?

@fengmk2 不是这个意思 ,是说重复依赖依赖

比如一个项目基于express,他会有debug,cookie等

但是再express-session里也有,这样的重复太不经济了

想想确实是很重复.

@i5ting @fengmk2 应该是说,多个项目使用相同的module,但是每次都安装么?环境一样,直接cp算不算,我看npm也有缓存,装一下不费事 >.<

@i5ting @fengmk2 哦,理解错误~那样是感觉不爽~

@alsotang 页面几十分钟没刷,没看到LZ的回复,想当然的回复了错误的理解。要是在评论有增加时,自动推送就好了。

@i5ting 这个重复依赖…其实…也没啥…就耗一点磁盘空间…可以省下很多麻烦的…

现在整个npm 需要多大磁盘空间?

npm 3 将会在 npm install 的时候进行 npm dedupe 类似的功能,详细请看 http://blog.npmjs.org/post/109921886740/a-belated-npm-weekly-3

@karlsun 推送android可以 iOS依然审核中 目测这周能上线 LOL 自豪地采用 CNodeJS ionic

@i5ting 如果 express 和 express-session 依赖的 debug 版本号能够被合并,只会安装一个版本的 debug

@fengmk2 这个是

我跑了个脚本,查询package.json

我的workspace里竟然有 20160 个。。。。。。。太恐怖了

其实我更想的探寻一种可能,本地起一个local registry,这个会节省很多网络资源,没有人希望每次都等

回到顶部