jdx / npm-register

Your own private npm registry and backup server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to disable caching?

holms opened this issue · comments

I've actually encoutered error with this:

 npm install react --save-peer
 npm install react-native --save-peer

It fails to find a package and I actually have no idea how to investigate it, without registry it works.
So I'd like simply to disable caching, how can I do this?

@dgautsch i'm guessing either there's some kind of limits are hit in here, rate limits on npm official repo, or some kind of performance, although i have lots and lots of free resources in here. Npm-register just stopped downloading packages and that's it, no errors in logs, only 404 when I try to download them from registry. Recreated container, and volumes, nothing helps

holms@debian ~/D/c/l/a/app-account> npm install
npm WARN deprecated istanbul-lib-hook@1.2.1: 1.2.0 should have been a major version bump
npm WARN deprecated socks@1.1.10: If using 2.x branch, please upgrade to at least 2.1.6 to avoid a serious bug with socket data flow and an import issue introduced in 2.1.0
npm ERR! code E404
npm ERR! 404 Not Found: axios@^0.18.0

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/holms/.npm/_logs/2018-08-31T11_16_41_230Z-debug.log

Here you go, and there's nothing I can do

Which version of npm-register are you on?

@holms found the issue, for some reason the response on the axios package details from npm is not coming back as an object but a string. Probably because it's so big. I'm putting a check in to parse that out. See ticket #129

@holms with v.2.8.1 are you still encountering this?

Closing as this appears to be fixed by v2.8.1 #129