Questions tagged [npm-registry]

For questions specifically about npm, Inc.’s default public software registry at https://registry.npmjs.org, or any other npm compatible registry.

Reference:

81 questions
1
vote
0 answers

unable to authetnicate to Azure DevOps Artifacts feed from AppCenter build pipeline

I have a ReactNative iOS app building on appcenter that cannot access npm feed on Azure DevOps Artifacts. Here are the artifacts from the project. I tried everything but dont see an issue. project root…
Ivan
  • 1,254
  • 12
  • 25
1
vote
0 answers

npm ERR! code E401 Incorrect or missing password.If you were trying to login, change your password, create an authentication token

Before Trying tis on My new M1 Macbook Air i tried it on Old MacBook and it works seamlessly on older machine like a charm My package.json { "name": "root", "private": true, "devDependencies": { "lerna": "^3.20.2" } } Steps i…
Gajanan Shinde
  • 183
  • 1
  • 4
  • 15
1
vote
3 answers

npx create-react-app projectName causing error

I am creating a react app using first command; npm init then second npx create-react-app projectName, however it is giving this error: npm ERR! code ETIMEDOUT npm ERR! errno ETIMEDOUT npm ERR! network request to…
user9083933
  • 361
  • 3
  • 10
1
vote
2 answers

Difference between npmjs replicate and npmjs registry

For research purpose, I am interested in getting a full list of npm package names. Some existing answer points to https://replicate.npmjs.com/registry/_all_docs, but the url is replicate.npmjs.com, and it seems to be a different registry than…
Eric Stdlib
  • 1,292
  • 1
  • 18
  • 32
1
vote
0 answers

private nexus npm proxy registry and tarball location

We are using Nexus as our artifact repository in a corporate build environment. We have proxy repositories/registries configured for things like maven, nuget, and npm. Our jenkins build servers only have access to our local intranet, so they pull…
erbrecht
  • 46
  • 5
1
vote
0 answers

How to install a scoped package from a different registry( package.json setup )

So I have this package "reusable-components": "^1.0.1" in my package.json If I hit npm install, it will try to download it from the https://registry/npmjs.org If I manually try to use npm install reusable-components…
ionescho
  • 1,360
  • 2
  • 17
  • 31
1
vote
1 answer

Unable to add user to verdaccio registry

I am trying to publish scoped package to verdaccio registry . I installed verdaccio by following commands npm install -g verdaccio Added this in my package.json file "publishConfig": { "registry": "http://localhost:4873" } After that…
Roster
  • 1,764
  • 6
  • 17
  • 36
1
vote
1 answer

npm - 404 Not Found - GET http://registry.npmjs.org/https-proxy-agent-snyk-fork

Running a period npm update I received this error: npm ERR! code E404 npm ERR! 404 Not Found - GET http://registry.npmjs.org/https-proxy-agent-snyk-fork - Not found npm ERR! 404 'https-proxy-agent-snyk-fork@*' is not in the npm registry. npm ERR!…
ciaobetty
  • 93
  • 1
  • 1
  • 6
1
vote
0 answers

How force the download of npm modules located in private nexus npm registry instead local modules?

Scenario I have a configured nexus repository working as npm registry with redeploy enabled. I know that enable redeploy is a bad practice, but we are in stabilization stage. Problem When I try to install my private module into local nodejs project,…
JRichardsz
  • 14,356
  • 6
  • 59
  • 94
1
vote
0 answers

Add an organisation as an owner of an NPM package

I am looking to add an organisation as a user or transfer ownership of a package so that it appears in their 'packages' section. Attempting to associate them via npm add user *org registry name* doesn't work, since they're an org and not a…
Ryan Achten
  • 495
  • 4
  • 21
1
vote
1 answer

Create proxy server to NPM registry

I am trying to create my own verion of local-npm I have this simple http server: #!/usr/bin/env node 'use strict'; import http = require('http'); const s = http.createServer(function (clientRequest, clientResponse) { if (clientRequest.url ===…
user5047085
1
vote
3 answers

docker cannot access intranet that host can

I am behind a corporate proxy. I have HTTP_PROXY, HTTPS_PROXY, and NO_PROXY set in the image. When I'm connected to the network I have access to a private npm registry that is on this intranet. My docker image is unable to access this registry. On…
ThomasReggi
  • 55,053
  • 85
  • 237
  • 424
1
vote
0 answers

Install next most recent version of node module if the very latest is unavailable

We have a local npm registry that is updated as and when requests are made to it. This can results in failures because it knows foo-sorter@1.2.3 is out there, but hasn't synced it yet. Even if we only specify foo-sorter@^1.1.0 (forgive me if the…
AncientSwordRage
  • 7,086
  • 19
  • 90
  • 173
0
votes
0 answers

Is there a way to override the same name `npmScopes` inside `.yarnrc.yml`?

Background My organization has two registries of the same name (say my-org); one is public and is hosted via NPM, and the other one is private and hosted in GitHub. Unfortunately, there is no registry mirroring between the two, and internal packages…
aayani
  • 333
  • 9
  • 19
0
votes
1 answer

List all existing npm packages in remote registry

There's our internal deployed registry (JFrog Artifactory). And there we have an NPM registry with repo npm-virtual, which can be accessed for requests by a link https://artifactory.xyz.com/artifactory/api/npm/npm-virtual I wonder, is there an…
vdaemoni
  • 3
  • 2