# 2021-01-14 #「Node.js」- npm(包管理器)
在 Linux 中,安装 npm 工具
升级 NPM 命令:
npm install -g npm@next npm install -g npm@latest
常用命令整理
# npm list -g # 显示所有用户目录中的包,以树形结构显示 # npm list -g -- depth=0 # 指定树显示的深度 # npm list # 显示当前目录中的包
常见问题汇总(FAQ)
npm 配置文件路径(.npmrc)
1)Per-user config file: $HOME/.npmrc
2)Global config file: $PREFIX/etc/npmrc
使用国内阿里云镜像加速
npm和yarn使用国内阿里云镜像加速 - mouseleo - 博客园
npm config set registry \
https://registry.npm.taobao.org --global
npm config set disturl \
https://npm.taobao.org/dist --global
设置使用网络加速
How to use NPM Behind a SOCKS Proxy | by James Jeffery | Medium
# 添加网络加速 npm config set proxy "http://127.0.0.1:8123" npm config set https-proxy "http://127.0.0.1:8123" # 删除网络加速 npm config delete proxy npm config delete https-proxy
参考文献
WikiNotes/npm(包管理器)
npm tricks part 1: Get list of globally installed packages
Try the latest stable version of npm | npm Documentation
浙公网安备 33010602011771号