其他npm命令 {ignore}

安装

  1. 精确安装最新版本
  1. npm install --save-exact 包名
  2. npm install -E 包名
  1. 安装指定版本
  1. npm install 包名@版本号

查询

  1. 查询包安装路径
  1. npm root [-g]
  1. 查看包信息
  1. npm view 包名 [子信息]
  2. ## view aliases:v info show
  1. 查询安装包
  1. npm list [-g] [--depth=依赖深度]
  2. ## list aliases: ls la ll

更新

  1. 检查有哪些包需要更新
  1. npm outdated
  1. 更新包
  1. npm update [-g] [包名]
  2. ## update 别名(aliases):up、upgrade
  3. npm update 后面啥参数不带回更新所有包

卸载包

  1. npm uninstall [-g] 包名
  2. ## uninstall aliases: remove, rm, r, un, unlink

npm 配置

npm的配置会对其他命令产生或多或少的影响

安装好npm之后,最终会产生两个配置文件,一个是用户配置,一个是系统配置,当两个文件的配置项有冲突的时候,用户配置会覆盖系统配置

通常,我们不关心具体的配置文件,而只关心最终生效的配置

通过下面的命令可以查询目前生效的各种配置

  1. npm config ls [-l] [--json]

另外,可以通过下面的命令操作配置

  1. 获取某个配置项
  1. npm config get 配置项
  1. 设置某个配置项
  1. npm config set 配置项=值
  1. 移除某个配置项
  1. npm config delete 配置项