创建package.json
npm init
npm安装包
npm install [-g] 包名
npm卸载包
npm uninstall [-g] 包名
npm更新
npm i -g npm
npm包更新
npm update [-g] 包名
npm版本
npm -v
清除npm缓存
npm cache clean -f
检查仓库地址是否可连接
//检查默认仓库地址
npm ping
查看npm bin目录位置
npm bin [-g]
查看安装包目录位置
npm root [-g]
仓库地址修改
npm config set registry + 仓库地址