question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

is there a way to npm install private packages under private NPM registry?

See original GitHub issue

Env App Engine

I have a private package in a private NPM registry, and I was wondering if the docker image have access to the corporate proxies where my private NPM registry is - or is that being run on the cloud?

I got an error like the following when running gcloud app deploy:

gcloud --project my-project beta app deploy

2147 error network getaddrinfo ENOTFOUND my-private-registry.org my-private-registry.org:80
2148 error network This is most likely not a problem with npm itself
2148 error network and is related to network connectivity.
2148 error network In most cases you are behind a proxy or have bad network settings.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:9 (3 by maintainers)

github_iconTop GitHub Comments

5reactions
boredlandcommented, Nov 5, 2019

did anybody find a way to deploy to app engine standard?

1reaction
hrguicommented, Jul 28, 2017

There is a workaround fortunately for this:

  1. npm pack your_private_package This will package the private package in the directory currently located in, in .tgz format. For this example, it will save it as your_private_package-1.0.0.tgz.
  2. npm install --save your_private_package-1.0.0.tgz
Read more comments on GitHub >

github_iconTop Results From Across the Web

About private packages - npm Docs
With npm private packages, you can use the npm registry to host code that is only visible to you and chosen collaborators, allowing...
Read more >
Installing private npm modules · Gemfury Dev Center
Learn to use the Gemfury npm registry. ... To publish and install private packages, you will first authenticate with your Gemfury credentials: npm...
Read more >
How to install a private NPM module without my own registry?
Publish your module under an organization name using the standard "@my-org/my-module " (by default all organization modules are private). · From ...
Read more >
Working with private packages - npm - w3resource
Npm private packages, enable you to use the npm registry to host your own private code and the npm command line to manage...
Read more >
Install private packages · Cloudflare Pages docs
​​ Private modules on the npm registry​​ In your Pages project's Settings > Environment variables, add a new environment variable named NPM_TOKEN ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found