1. 创建模块
-
npm init
创建package.json文件,生成的文件包含了基本的结果;
-
npm adduser
在npm资源库中注册用户(使用邮箱注册):
$ npm adduser
Username: shirley
Password:
Email: (this IS public) shirley@163.com
-
npm publish
发布模块。发布成功之后就可以像其他模块一样使用npm安装。
2. npm包的版本号
- npm 使用语义化版本号来管理代码,语义版本号为
X.Y.Z
三位, 分别代表主版本号、次版本号和补丁版本号。版本号的更新原则是:
- 如果只是修复bug, 则更新 Z 位;
- 如果新增了功能,但是向下兼容,则更新Y位;
- 如果有大变动,向下不兼容,则需要更新X位。
3. npm 常用命令
-
npm update <package>
把当前目录下node_modules子目录里的对应模块更新至最新版本。
-
npm update <package> -g
把全局安装的对应模块更新至最新版本。
-
npm unpublish <package>@<version>
撤销自己发布过的某个版本代码。
-
npm cache clear
清空npm本地缓存。
4. 使用淘宝npm镜像
- 国内直接使用 npm 的官方镜像是非常慢的,推荐使用淘宝 NPM 镜像。
- 使用淘宝定制的 cnpm (gzip 压缩支持) 命令行工具代替默认的 npm:
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
$ cnpm install [name]