npm install ,npm ERR code 401 Incorrect or missing password 错误原因与.npmrc 配置文件的使用

简介: npm install ,npm ERR code 401 Incorrect or missing password 错误原因与.npmrc 配置文件的使用

一、.npmrc 文件

 先聊一下 npmrc 的配置文件,方便我们下面排查问题!

20210527153548522.png

1. npmrc 的作用

  .npmrc ,可以理解为 npm running configuration ,npm 运行时的配置文件。我们知道 npm 最大的作用就是帮助开发者安装需要的依赖包,但是要从哪里下载?下载哪一个版本的包,把包下载到电的那个路径下?下载的是私有包的路径还是共有包的路径?我有一个私有包如何配置路径?

以上都是可以在 .npmrc 中进行配置


在设置 .npmrc 之前,我们需要知道:在你的电脑上,不止存在一个 .npmrc 文件,而是有多个。


我们在安装 npm 包的时候,npm 按以下顺序读取这些配置文件:


项目配置文件:就是上面截图看到的 .npmrc 文件,这个文件的作用只用于管理当前项目的 npm 安装;

用户配置文件:我们在用一个账户登录电脑的时候,我们可以为当前用户创建一个 .npmrc 文件,之后再用这个账户登录 ,就可以使用这个配置文件去 指定源下载,去使用这个配置文件。可以通过 npm config get userconfig 来获取文件位置;

全局配置文件:一台电脑可能有多个用户,在这些用户之上,可以设置一个公共的 .npmrc 文件,供所有用户使用。该文件的路径为:$PREFIX/etc/npmrc,使用 npm config get prefix 获取$PREFIX。如果你不曾配置过全局文件,该文件不存在。

npm 内嵌配置文件:npm内置的配置文件,基本上个人是用不到的,无需太多关注;  

2. 设置项目配置文件

   在项目的根目录下新建 .npmrc 文件,在里面以 key=value 的格式进行配置。比如要把npm的源配置为淘宝源,可以参考一下代码:

registry=https://registry.npm.taobao.org

3. 设置用户配置文件

    你可以直接通过 npm config get userconfig 命令找到该文件的路径,然后直接仿照上述方法该文件,也可以通过 npm config set 命令继续设置,命令如下:

config set registry https://registry.npm.taobao.org

如果想要删除一些配置,可以直接编辑.npmrc文件,也可以使用命令进行删除,比如:

npm config delete registry

4. 设置全局配置文件

方法和设置用户配置文件如出一辙,只不过在使用命令行时需要加上 -g 参数。

npm config set registry https://registry.npm.taobao.org -g

以上就是关于 .npmrc 的一些常识,在开发过程,很少会配置该文件,不过接下来会讲到一种!不过在我们安装依赖出错的时候可以多一个思路,不至于一头雾水!

二、npm ERR code 401,错误分析

1. 安装的是私有包,npm 需要登录以后才可以 install

npm ERR! code E401
npm ERR! Incorrect or missing password.
npm ERR! If you were trying to login, change your password, create an
npm ERR! authentication token or enable two-factor authentication then
npm ERR! that means you likely typed your password in incorrectly.
npm ERR! Please try again, or recover your password at:
npm ERR!     https://www.npmjs.com/forgot
npm ERR! 
npm ERR! If you were doing some other operation then your saved credentials are   
npm ERR! probably out of date. To correct this please try logging in again with:  
npm ERR!     npm login
npm ERR! A complete log of this run can be found in:
npm ERR!     D:\other\nodejs\node_cache\_logs\2022-10-15T13_22_01_878Z-debug-0.log

20210527153548522.png

大家可以看上图,我项目里面有 .npmrc 的项目配置文件,所以执行 npm install 的时候,默认就会读取我当前指定的下载位置,因为我项目需要下载 私有的 node_modules 所以,配置此路径;


错误原因: 私有包需要用户权限


解决方法: npm login 就可以,登录有权限的npm账户

2. npm ERR! Unable to authenticate, need Basic realm ="aliyun"

但是此时报错的提示和上面有所差距,注意看 realm = “aliyun(阿里云)”

npm ERR! code E401
npm ERR! Unable to authenticate, need Basic realm ="aliyun"

如果是下载私有包,要先检查是否登录

 ①  检查登录账户是否有下载私有包权限,一般私有包会提供 npm 账户以及密码;

 ②  不是下载私有包报错,把项目 registery 地址切换 为 npm.js.org 官方账户

npm install --registry https://registry.npmjs.org

3. 想要在 npm 上发布自己的 npm 包,执行 npm login 报错  

PS D:\Workspace\WebstormProjects\lhqm-ngzorro>  npm login
Username: qianmian
Password:
Email: (this IS public) 572298826@qq.com
npm ERR! code E401
npm ERR! Incorrect or missing password.
npm ERR! If you were trying to login, change your password, create an
npm ERR! authentication token or enable two-factor authentication then
npm ERR! that means you likely typed your password in incorrectly.
npm ERR! Please try again, or recover your password at:
npm ERR!     https://www.npmjs.com/forgot
npm ERR!
npm ERR! If you were doing some other operation then your saved credentials are
npm ERR! probably out of date. To correct this please try logging in again with:
npm ERR!     npm login
npm ERR! A complete log of this run can be found in:
npm ERR!     F:\Program_Files\QianDuan\nodejs\node_cache\_logs\2021-04-04T14_44_24_023Z-debug.log

错误原因:需要查看当前 npm 下载路径,上面有说过查看方式;淘宝镜像只支持下载,不支持上传发布;

解决方法:将配置的 registery 重新指向 npm 官方;

npm config set registry https://registry.npmjs.org/

4. npm ERR! code ETARGET

notarget No matching version found for uxcore@^1.0.23. 通过这句话我们可以大概明白,1.0.23 版本的 uxcore 这个包,没有在当前的npm 配置文件下载源中被找到;


 为什么会出现这个情况?


 我们首先要确认这个包是公有化的还是私有化的,很大几率是私有化的包,我们做 MultipleRepo 项目管理方式的时候,经常会用到 私有化的 npm 包,去做项目间依赖管理!


 确定好上面原因,我们在项目配置文件 -> .npmrc 去设置对应的 npm registery 就可以,从新执行 npm install 即可

PS E:\uxretail-ui> npm install
npm ERR! code ETARGET
npm ERR! notarget No matching version found for uxcore@^1.0.23.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! A complete log of this run can be found in:
npm ERR!     D:\other\nodejs\node_cache\_logs\2022-10-15T14_40_12_462Z-debug-0.log
相关文章
|
24天前
|
缓存 JavaScript 前端开发
拿下奇怪的前端报错(三):npm install卡住了一个钟- 从原理搞定安装的全链路问题
本文详细分析了 `npm install` 过程中可能出现的卡顿问题及解决方法,包括网络问题、Node.js 版本不兼容、缓存问题、权限问题、包冲突、过时的 npm 版本、系统资源不足和脚本问题等,并提供了相应的解决策略。同时,还介绍了开启全部日志、使用替代工具和使用 Docker 提供 Node 环境等其他处理方法。
286 0
9-14|npm install --global windows-build-tools 安装太慢了,能够指定国内源
9-14|npm install --global windows-build-tools 安装太慢了,能够指定国内源
|
2月前
|
缓存 JavaScript 前端开发
8种方法解决vue创建项目报错:command failed: npm install --loglevel error
该文章提供了八种解决Vue项目创建时遇到的`command failed: npm install --loglevel error`错误的方法,包括清理缓存、更换npm源、重新安装Node.js等措施。
8种方法解决vue创建项目报错:command failed: npm install --loglevel error
|
3月前
|
缓存
成功解决:Could not resolve dependency: npm ERR! peer vue@“^3.0.2“ from vuex@4.0.2
这篇文章讨论了在使用npm安装依赖时遇到的一个常见问题,即无法解析依赖导致的"peer dependency"冲突错误。文章提供了几种解决方法,包括清除npm缓存、删除`node_modules`文件夹和`package-lock.json`文件,然后重新尝试安装,以解决版本冲突问题。
|
3月前
optional install error: Error: Unsupported URL Type: npm:vue-loader@^16.1.0
optional install error: Error: Unsupported URL Type: npm:vue-loader@^16.1.0
46 3
|
5月前
|
前端开发
windows10 安装node npm 等前端环境 并配置国内源
windows10 安装node npm 等前端环境 并配置国内源
322 3
|
24天前
|
缓存 资源调度 JavaScript
npx与npm的差异解析,以及包管理器yarn与Node版本管理工具nvm的使用方法详解
npx与npm的差异解析,以及包管理器yarn与Node版本管理工具nvm的使用方法详解
29 0
2071 verbose node v16.6.0 2072 verbose npm v7.19.1或者 no such file or directory, lstat ‘D:\wor
该博客文章提供了解决在使用npm版本7.19.1时出现的"no such file or directory"错误的具体方法,建议通过降级npm到6.14.8版本来解决问题,并确认了该方法可以成功安装node_modules。
2071 verbose node v16.6.0 2072 verbose npm v7.19.1或者 no such file or directory, lstat ‘D:\wor
|
3月前
|
缓存 JavaScript 前端开发
成功解决:npm 版本不支持node.js。【 npm v9.1.2 does not support Node.js v16.6.0.】
这篇文章介绍了如何解决npm版本与Node.js版本不兼容的问题,提供了查看当前npm和Node.js版本的步骤,以及如何根据Node.js版本选择合适的npm版本并进行升级的详细指导。
成功解决:npm 版本不支持node.js。【 npm v9.1.2 does not support Node.js v16.6.0.】
|
3月前
|
JavaScript
【Deepin 20系统】Jupyter notebook解决ValueError: Please install Node.js and npm before continuing installa
文章讨论了在Deepin 20系统上安装Jupyter Notebook的debug插件时出现的"ValueError: Please install Node.js and npm before continuing installation"错误,并提供了使用conda安装Node.js的解决方法。
118 1