尝试发布 npm 包时出错
Errors trying to publish npm package
我上周发表的很好,但我今天试过了,但它在我的任何一台电脑上都不起作用。这很奇怪,起初我以为服务有问题,但后来我开始做一些我在网上找到的解决方案,现在我尝试 npm adduser
:
时得到了这个
npm ERR! code E404
npm ERR! 404 Not Found - PUT https://npm.pkg.github.com/estebanpadilla/-/user/org.couchdb.user:ludusy
npm ERR! 404
npm ERR! 404 'org.couchdb.user:ludusy' is not in the npm registry.
npm ERR! 404 Your package name is not valid, because
npm ERR! 404 1. name can only contain URL-friendly characters
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/estebanpadilla/.npm/_logs/2020-08-11T03_27_17_364Z-debug.log
我四处寻找可能的解决方案,但似乎没有任何效果。
npm whoami
给出了这个结果:
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/estebanpadilla/.npm/_logs/2020-08-11T03_29_57_501Z-debug.log
有人知道如何让它重新工作吗?
谢谢。
您似乎没有登录。我认为您需要 运行 npm adduser
并按照提示进行操作。
只是一个快速提示 -- 请务必仔细阅读错误消息。我认为这条线准确地告诉了您需要做什么! npm ERR! need auth You need to authorize this machine using npm adduser
.
它现在正在工作,出于某种原因我无法在项目目录上 运行 npm adduser 或 npm whoami 但我可以在任何其他目录上所以我认为某些配置有问题项目里面的文件。我删除了所有不重要的文件,但它仍然有效。
感谢您的帮助。
我上周发表的很好,但我今天试过了,但它在我的任何一台电脑上都不起作用。这很奇怪,起初我以为服务有问题,但后来我开始做一些我在网上找到的解决方案,现在我尝试 npm adduser
:
npm ERR! code E404
npm ERR! 404 Not Found - PUT https://npm.pkg.github.com/estebanpadilla/-/user/org.couchdb.user:ludusy
npm ERR! 404
npm ERR! 404 'org.couchdb.user:ludusy' is not in the npm registry.
npm ERR! 404 Your package name is not valid, because
npm ERR! 404 1. name can only contain URL-friendly characters
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/estebanpadilla/.npm/_logs/2020-08-11T03_27_17_364Z-debug.log
我四处寻找可能的解决方案,但似乎没有任何效果。
npm whoami
给出了这个结果:
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/estebanpadilla/.npm/_logs/2020-08-11T03_29_57_501Z-debug.log
有人知道如何让它重新工作吗?
谢谢。
您似乎没有登录。我认为您需要 运行 npm adduser
并按照提示进行操作。
只是一个快速提示 -- 请务必仔细阅读错误消息。我认为这条线准确地告诉了您需要做什么! npm ERR! need auth You need to authorize this machine using npm adduser
.
它现在正在工作,出于某种原因我无法在项目目录上 运行 npm adduser 或 npm whoami 但我可以在任何其他目录上所以我认为某些配置有问题项目里面的文件。我删除了所有不重要的文件,但它仍然有效。
感谢您的帮助。