Npm ERR! 404 '@ reactivex / rxjs' is not in the npm registry

Problems installing this package from NPM. Trying to install as this is Angular2 folder

Mistake:

npm ERR! Darwin 15.0.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "@reactivex/rxjs@5.0.0-alpha.6"
npm ERR! node v4.2.3
npm ERR! npm  v2.14.7
npm ERR! code E404

npm ERR! 404 Not Found: @reactivex/rxjs
npm ERR! 404 
npm ERR! 404 '@reactivex/rxjs' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
+4
source share
2 answers

The problem is that we use Artifactory as a private NPM repository. Artifactory did not support Scopes, i.e. @reactivex vs angular. @is a new scope for NPM. After a little research, the same error was found with some versions of the Sonatype Nexus NPM repositories.

Direct switch to NPM, and this solved the problem.

+3
source

@ccit-spence . , Artifactory 4.3.3. Bintray, .

+1

Source: https://habr.com/ru/post/1618760/


All Articles