- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当前行为:
我正在尝试配置一个项目以从 NPM 安装依赖项。我将把项目作为私有(private)包发布到 GitHub Packages。如果我在项目的 .npmrc
中使用此语法:
@my-org:registry=https://npm.pkg.github.com/
我可以使用
npm install
从 NPM 安装依赖项在我的本地机器上。但是,我无法使用
npm publish
发布到 GitHub 包。 . NPM 通知我我没有通过身份验证。如果我在项目的
.npmrc
中使用此语法:
registry=https://npm.pkg.github.com/my-org/
我可以使用
npm publish
发布,但我无法使用
npm install
安装依赖项. NPM 通知我它正在尝试从 GitHub Packages 安装依赖项,而不是 NPM。
npm install
兼容。和
npm publish
.但是,根据我的预期用途,我似乎只能使用其中一种。
v15.7.0
和 NPM 7.4.3
通过nvm .npm login --scope=@my-org --registry=https://npm.pkg.github.com
~/.npmrc
文件在我们的主文件夹中。它应该是:@my-org:registry=https://npm.pkg.github.com/
//npm.pkg.github.com/:_authToken=<auth-token-used-for-login>
package.json
创建项目:{
"name": "@my-org/my-package",
"description": "A test.",
"version": "1.0.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/my-org/my-package.git"
},
"keywords": ["example"],
"author": "Me",
"license": "ISC",
"bugs": {
"url": "https://github.com/my-org/my-package/issues"
},
"homepage": "https://github.com/my-org/my-package",
"dependencies": {
"bootstrap": "^4.5.2"
}
}
.npmrc
到我们的项目:@my-org:registry=https://npm.pkg.github.com/
npm install
.安装应该成功。npm publish
.收到以下错误:npm ERR! code ENEEDAUTH
npm ERR! need auth This command requires you to be logged in.
npm ERR! need auth You need to authorize this machine using `npm adduser`
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/my-user/.npm/_logs/2021-01-28T20_19_55_974Z-debug.log
.npmrc
到:registry=https://npm.pkg.github.com/my-org/
npm publish
.发布应该成功。rm -rf node_modules/ package-lock.json
在项目中。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! /Users/my-user/.npm/_logs/2021-01-28T20_38_20_711Z-debug.log
publishConfig
不幸的是,
publishConfig
不能解决问题。它也没有解决这两个
.npmrc
语法产生不同的结果。
.npmrc
authToken
NPM 的文档指出不需要包含
authToken
在项目中
.npmrc
.使用
npm login
进行身份验证并存储
authToken
在全局
~/.npmrc
应该足够了。
--registry
命令行标志
.npmrc
句法:
@my-org:registry=https://npm.pkg.github.com/
如果我运行
npm publish --registry=https://npm.pkg.github.com/
,我可以发布成功。此外,我可以毫无问题地安装依赖项。
最佳答案
更新(2021 年 5 月 30 日)
这已在 NPM 7.5.3
中修复以上。
原始答案(2021 年 4 月 20 日)
这已被确认为 NPM 上的一个错误 7.x
.该团队目前正在努力通过他们的 GitHub Pull Request #2602 修复该错误。 .在此错误修复发布之前,最好的建议是执行下面列出的解决方法之一。
解决方法 1:--registry
命令行标志
运行时npm publish
, 添加 --registry
旗帜。此标志使开发人员能够指定他们打算发布到的注册表,覆盖 .npmrc
或 package.json
配置。对于我的问题中列出的示例,项目 .npmrc
应包含:
@my-org:registry=https://npm.pkg.github.com/
通过运行启动发布将成功:
npm publish --registry=https://npm.pkg.github.com/
解决方法 2:默认注册表的虚拟 token
.npmrc
,添加以下行:
//registry.npmjs.org/:_authToken=dummy
完整项目
.npmrc
应包含:
//registry.npmjs.org/:_authToken=dummy
@my-org:registry=https://npm.pkg.github.com/
在问题中,这两个项目都不是
.npmrc
我们尝试使用的语法已经指定了一个注册表,因为 NPM 的文档声明我们不必这样做。文档声明它将检查我们的全局
~/.npmrc
如果我们的项目中没有
.npmrc
. NPM 中的错误导致 NPM 检查项目是否
.npmrc
在尝试进行身份验证之前已指定注册表。在
wraithgar's own words :
What happens is that currently the cli is only looking for your configured "registry" setting when seeing if you have logged in. So the temporary solution is either to override that setting (as you were doing by passing --registry), OR to add a token for the default (npm) registry so that the check for a token does not fail. The check is only looking for the presence of a token in the config, it's not validating it (that of course will happen when and if it is used during an actual request), so putting a dummy value in will stop the error until that PR lands.
npm publish
和
npm install
都应该成功。
关于node.js - `npm publish` 和 `npm install` 失败取决于使用的 `.npmrc` 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65945592/
在此处回答的另一个问题中,我发现了以下 JavaScript代码: function _dom_trackActiveElement(evt) { if (evt && evt.target)
if (A == 0) OR (B == 0) 怎么说? 最佳答案 只是为了讽刺: if (A === 0 || B === 0) 关于语法,我们在Stack Overflow上找到一个类似的问题:
var ret = [] ,xresult = document.evaluate(exp, rootEl, null, X
我一直在寻找一些类似于下例的 JavaScript。有人可以解释一下吗,因为我以前从未见过这样编写的 JavaScript。 “SomethingHere”和冒号代表什么?我习惯于看到函数 myFun
这是我的程序: delimiter // drop procedure if exists migContactToActor; create procedure migContactToActor(
我遇到了一个问题。我一直在使用 gcc 编译/汇编我的 C 代码一段时间,并且习惯了阅读 Intel 汇编语法。我在生成程序集文件时使用了 -masm=intel 标志。 但是最近因为公司迁移,拿到了
自上而下和自下而上语法有什么区别?举个例子就太好了。 最佳答案 首先,语法本身不是自上而下或自下而上的,解析器是(尽管有些语法可以被其中一个解析,但不能被另一个解析)。 从实践的角度来看,主要区别在于
我知道这是草率的代码,但它是: display dialog ("Start Screensaver. Please type: matrix, coffee, waffles, star, wate
这个问题已经有答案了: Giving name to a loop (6 个回答) 已关闭 8 年前。 我见过这个字符在 C# 中使用,就像 Java 中的扩展一样,但最近我在代码中发现了这个 loo
我正在尝试编写一个函数来检查字符串是否为回文,但我认为在使用字符串指针时存在一些错误。这段代码有什么问题? #include #include #define MAX 1000 int IsPalin
所以在this question我询问了一些 Javascript 是如何被压缩的。问题已得到解答,但以下片段让我非常困惑,以至于我不得不问另一个问题。在这里: for (Y = 0; $ = 'zx
假设我有一个接受这些参数的函数。 int create(Ptr * p,void * (*insert)(void *, void *)) { //return something later } 结
这个问题已经有答案了: Bitwise '&' operator (6 个回答) 已关闭 5 年前。 我在代码中找到了这个,但我从未遇到过像 & 这样的事情,仅 && if ((code & 1) =
我在处理继承类及其中的构造函数和方法的语法时遇到了问题。 我想实现一个类日期和一个子类 date_ISO,它们将按特定顺序设置给定的日、月、年,并通过一种方法将其写入字符串。我觉得我的基类日期工作正常
我正在尝试通过存储过程填充表,如下所示: SET @resultsCount = (SELECT COUNT(*) FROM tableA); SET @i = 0; WHILE @i THEN
谁能解释一下下面代码中的“<<”? mysql test<
刚刚开始学习 MySQL,这是一个菜鸟问题,也是我在 StackOverflow 上的第一个问题。 假设我有 12 个订单状态,我想从其中的 5 个中选择总计。我会使用: SELECT SUM(tot
我的编程背景是在学校学过一点Java。由于某些原因,JavaScript 语法往往让我感到困惑。下面的 JavaScript 代码是一种我不知道如何构成的语法模式: foo.ready = funct
我正在阅读 javascript 源代码,并且我以前没有编写过 javascript。我对它的一些语法感到困惑。 $(function () { window.onload=function
我什至不知道如何命名我想要的东西。那么让我举个例子来解释一下。 虽然火狐使用textContent,但其他浏览器支持innerText属性。顺便说一句,如果我使用了错误的术语,请纠正我。无论如何,到目
我是一名优秀的程序员,十分优秀!