无法从Github发布npm软件包?

时间:2020-09-14 23:29:08

标签: npm npm-publish npm-package

我已经通过使用以下命令发布了react-push-notify

   npm login
   npm publish

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

  1. publishPackage添加到我的package.json

        "publishConfig": { "registry": "https://npm.pkg.github.com/" }
    
  2. 验证

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

       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之间有什么区别?

0 个答案:

没有答案