admin管理员组文章数量:1243218
I installed Nexus Repository Manager OSS 3.2.1 and ran it on local machine.
Configuration
I have three NPM repositories defined in Nexus:
- [PUBLIC] - a proxy for public npm registry
- [PRIVATE] - a private repository for my own packages
- [NPM] - a group repository, allowing access to [PRIVATE] and [PUBLIC] in this order
In Settings/Security/Realms I've added npm Bearer Token Realm.
Downloading
I can download packages from [PUBLIC], which works as intended.
.npmrc
registry=http://localhost:8081/repository/PUBLIC
npm install react // works fine, downloads from [PUBLIC]
I can download packages from [NPM], which works as intended.
.npmrc
registry=http://localhost:8081/repository/NPM
npm install react // works fine, downloads from [PUBLIC]
It won't work with [PRIVATE], because I don't have package named react.
Publishing
I don't want to publish to [PUBLIC].
I can publish packages to [PRIVATE], which works as intended.
.npmrc
registry=http://localhost:8081/repository/PRIVATE
npm publish // works fine, publishes to [PRIVATE]
I can't publish packages to [NPM] and this is weird.
.npmrc
registry=http://localhost:8081/repository/NPM
npm publish // fails, should publish to [PRIVATE]
// gets HTTP 400
Error
Detailed log:
Problem
I understand that I can set up different url for publishing packages with publishConfig in package.json file, but for me it's duplicating configuration.
Can this be done with Nexus group repository?
I installed Nexus Repository Manager OSS 3.2.1 and ran it on local machine.
Configuration
I have three NPM repositories defined in Nexus:
- [PUBLIC] - a proxy for public npm registry
- [PRIVATE] - a private repository for my own packages
- [NPM] - a group repository, allowing access to [PRIVATE] and [PUBLIC] in this order
In Settings/Security/Realms I've added npm Bearer Token Realm.
Downloading
I can download packages from [PUBLIC], which works as intended.
.npmrc
registry=http://localhost:8081/repository/PUBLIC
npm install react // works fine, downloads from [PUBLIC]
I can download packages from [NPM], which works as intended.
.npmrc
registry=http://localhost:8081/repository/NPM
npm install react // works fine, downloads from [PUBLIC]
It won't work with [PRIVATE], because I don't have package named react.
Publishing
I don't want to publish to [PUBLIC].
I can publish packages to [PRIVATE], which works as intended.
.npmrc
registry=http://localhost:8081/repository/PRIVATE
npm publish // works fine, publishes to [PRIVATE]
I can't publish packages to [NPM] and this is weird.
.npmrc
registry=http://localhost:8081/repository/NPM
npm publish // fails, should publish to [PRIVATE]
// gets HTTP 400
Error
Detailed log: https://pastebin./5GuqNNhf
Problem
I understand that I can set up different url for publishing packages with publishConfig in package.json file, but for me it's duplicating configuration.
Can this be done with Nexus group repository?
Share Improve this question edited Apr 12, 2017 at 11:52 m1gu3l asked Apr 12, 2017 at 10:57 m1gu3lm1gu3l 7731 gold badge6 silver badges19 bronze badges1 Answer
Reset to default 15You can't publish to a group repository. Change the URL you are using to the URL of a hosted npm repository, that will work.
本文标签: javascriptHow to npm publish to Nexus group repositoryStack Overflow
版权声明:本文标题:javascript - How to npm publish to Nexus group repository? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740132797a2230063.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论