2

我已经使用以下命令发布了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 之间有什么区别?

4

1 回答 1

0

登录和注销

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

发布

npm publish
于 2021-12-15T21:49:25.710 回答