无法从 Github 发布 npm 包?

Posted

技术标签:

【中文标题】无法从 Github 发布 npm 包?【英文标题】:Unable to publish npm package from Github? 【发布时间】:2021-01-01 16:37:04 【问题描述】:

我已经使用这个命令发布了react-push-notify:

   npm login
   npm publish

但是,当我想通过 Github(私有存储库)再次发布时,请按照以下步骤操作:

    publishPackage添加到我的package.json

        "publishConfig":  "registry": "https://npm.pkg.github.com/" 
    

    验证

        npm login --registry=https://npm.pkg.github.com/
    

    发布

       npm publish
    

它调用了这个错误:

npm ERR! code E404
npm ERR! 404 Not Found - PUT https://npm.pkg.github.com/react-push-notify
npm ERR! 404
npm ERR! 404  'react-push-notify@0.2.0' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
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 上的第一个包,我很困惑发布到 npm 和从 Github 发布到 npm 有什么区别?

【问题讨论】:

【参考方案1】:

登录和注销

npm login --scope=@[Organization name] --registry=https://npm.pkg.github.com
npm logout --scope=@My-Organization --registry=https://npm.pkg.github.com

发布

npm publish

【讨论】:

以上是关于无法从 Github 发布 npm 包?的主要内容,如果未能解决你的问题,请参考以下文章

无法从 Heroku 上的 package.json 从 github 安装 npm 包

无法从 GitHub NPM 注册表 (npm.pkg.github.com) 通过 yarn 下载依赖项

无法从 GitHub Actions 发布到 npm:`<package> is not in the npm registry` 错误

如何从 GitHub 为 Meteor 安装 NPM 包?

从 Github 安装时自动构建 NPM 模块

如何从需要构建步骤的 github 安装 npm 包,例如分叉图书馆时?