npm安装并配置国内镜像源(阿里云 npmmirror 镜像站)
npm安装并配置国内镜像源(阿里云 npmmirror 镜像站)
npm安装
官网下载nodejs安装包并安装:https://nodejs.org。nodejs自带npm,实际上npm是nodejs的包管理器。
npm国内镜像源(阿里云 npmmirror 镜像站)
使用说明
你可以使用我们定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm
:
1 | $ npm install -g cnpm --registry=https://registry.npmmirror.com |
或者你直接通过添加 npm
参数 alias
一个新命令:
1 | alias cnpm="npm --registry=https://registry.npmmirror.com \ |
安装模块
1 | $ cnpm install [name] |
同步模块
直接通过 sync
命令马上同步一个模块, 只有 cnpm
命令行才有此功能:
1 | $ cnpm sync express |
当然, 你可以直接通过 web 方式来同步: /sync/express
1 | $ open https://npmmirror.com/sync/express |
其它命令
支持 npm
除了 publish
之外的所有命令, 如:
1 | $ cnpm info express |