要在npm中设置镜像,你可以使用npm config命令。以下是设置npm镜像的步骤:
-
临时使用淘宝镜像:
npm --registry https://registry.npmmirror.com install package-name
-
永久设置镜像:
npm config set registry https://registry.npmmirror.com
-
通过
.npmrc
文件设置(全局或项目级别):在你的用户目录或项目目录下,创建或编辑
.npmrc
文件,添加以下内容:
registry=https://registry.npmmirror.com
-
使用环境变量设置(只对当前会话有效):
在命令行中直接设置环境变量:
export npm_config_registry=https://registry.npmmirror.com
以上任选一种方法即可设置npm的镜像源。
使用 npm config list 命令的第一行就可以查看到npmrc文件在哪里
; "builtin" config from C:\Program Files\nodejs\node_modules\npm\npmrc
prefix = "C:\\Users\\123\\AppData\\Roaming\\npm"
; node bin location = C:\Program Files\nodejs\node.exe
; node version = v20.12.2
; npm local prefix = C:\Users\11200
; npm version = 10.5.0
; cwd = C:\Users\123
; HOME = C:\Users\123
; Run `npm config ls -l` to show all defaults.