本地操作
1.安装npm包
npm install lodash(包名)
安装指定版本号
npm install lodash@0.9.1
获取所有可用的版本号
npm view lodash@* version
2.查看已安装的npm包
带依赖关系
npm -g list
不带依赖关系
//查看全局的
npm list -g --depth=0
//查看项目中的
npm list --depth=0 [--dev | --production]
说明:
- npm : the Node package manager command line tool npm :Node包管理器命令行工具
- list -g : display a tree of every package found in the user’s folders (without the -g option it only shows the current directory’s packages) list -g :显示在用户文件夹中找到的每个包的树(没有-g选项,它只显示当前目录的包)
- depth 0 / — depth=0 : avoid including every package’s dependencies in the tree view depth 0 / - depth = 0 :避免在树视图中包含每个包的依赖关系
3.更新本地npm包
npm update
4.找出需要更新的包
npm outdated
5.卸载npm包
npm uninstall lodash(包名)
npm uninstall --save lodash(包名) //卸载dependencies中的npm包
npm uninstall --save-dev lodash(包名) //卸载devdependencies中的npm包
全局操作 【加上-g】
1.更新所有npm包
**npm update -g **
2.找出哪些包需要被更新
**npm outdated -g --depth=0 **
3.更新具体某个包
**npm update -g jshint **
4.更新npm本身
**[sudo] npm install npm@latest -g **