is there a way to npm install private packages under private NPM registry?
See original GitHub issueEnv 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:
- Created 6 years ago
- Comments:9 (3 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
did anybody find a way to deploy to app engine standard?
There is a workaround fortunately for this:
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 asyour_private_package-1.0.0.tgz
.npm install --save your_private_package-1.0.0.tgz