npm使用笔记
常用命令
#帮助 npm -l #列出全部命令 npm help cmd-name #查看某个命令的用法 #配置 npm config list -l #查看全部配置项,或者npm config ls -l npm config set <key> <value> [-g|--global] npm config get <key> npm config delete <key> #初始化项目 npm init #查看本地包 npm list npm list -g #安装包 npm install #全部安装 npm install pack-name #安装某个包 #卸载包 npm uninstall pack-name [-g] #更新包 npm update pack-name [-g] #搜索 npm search pack-name #运行脚本 npm run script-name
常见问题
npm install 失败:
52 packages are looking for funding
run `npm fund` for details
found 1142 vulnerabilities (522 low, 130 moderate, 489 high, 1 critical)
解决1:nmp清缓存:npm cache clean --force
解决2:把项目中的node_modules文件删掉,再执行npm install。这时候就会发现没有警告了。
npm目录配置
#查看配置
npm config list -g
npm config ls -l
#目录先建好
npm config set prefix"D:\nodejs\node_modules\npm\node_global_modules"
npm config set cache"D:\nodejs\node_modules\npm\node_cache"