-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting a 404 on an npm install for har-validator-5.1.2.tgz #113
Comments
@ahmadnassri There is a version mismatch for this package and the npm/yarn repos. The current version is 5.1.2 and it is published under 5.1.3 |
@kevincolten I hear you, but there are many old versions of various npm libs that are specifically looking for 5.1.2. protactor being one of them. I don't see a way to redirect specific npm packages that I don't control. Would you be able to push whatever the latest is out as 5.1.2 out to the npm repo? |
Anyone have a solution for this? Edit: As @danoc wrote below, bumping my package version ultimately fixed this for me, but not until I had manually removed I'd try other techniques first, but manually editing |
Was able to work around this by bumping up the version of the package I had that depended on If using Yarn, you can figure this out by running |
I was able to fix one of two projects by uninstalling and reinstalling the package with the dependency on har-validator. For some reason, this didn't help with my second project. To resolve that one, I replaced the har-validator entry in "har-validator": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
"integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
"requires": {
"ajv": "^6.5.5",
"har-schema": "^2.0.0"
}
} That resolved my second project. hope this helps |
Installing har-validator 5.1.3 in my project solved the issue for me. |
@cdimascio is my hero for the day. This corrected my problem. |
Does someone have contacted NPM about that issue? |
update the package (like request 2.88.0 dependency of har-validator ~5.1.0) |
This issue seems to be causing my Travis CI tests to fail early. Reached out to npm support about it to see if they can redirect 5.1.2 -> 5.1.3 Edit: Regards |
Delete |
@kevincolten how did this problem occur? The behavior seems as if someone ran |
Unpublish confirmation: |
closing this to continue the discussion in #112 |
There's an issue with har-validator version 5.1.2 on npm. Manually updating package-lock to deal with this for now. ahmadnassri/node-har-validator#113
That worked for me. Don't know why... ^^ Thanks |
All you need to do is delete "package-lock.json" and run command "npm install" |
|
See for example ahmadnassri/node-har-validator#113 for the issue
Version 5.1.2 of har-validator was renamed to 5.1.3 and therefore the old package is not available anymore and causes an 404 error upon retrieval. See ahmadnassri/node-har-validator#113
Version 5.1.2 of har-validator was renamed to 5.1.3 and therefore the old package is not available anymore and causes an 404 error upon retrieval. See ahmadnassri/node-har-validator#113
Version 5.1.2 of har-validator was renamed to 5.1.3 and therefore the old package is not available anymore and causes an 404 error upon retrieval. See ahmadnassri/node-har-validator#113
Thanks u, you my hero.. |
har-validator 5.1.2 is not found. ahmadnassri/node-har-validator#113
When I run an npm install, I am now getting a 404 on the har-validator-5.1.2.tgz package. This just started occurring over the weekend.
15420 error code E404
15421 error 404 Not Found: har-validator@https://registry.npmjs.org/har-validator/-/har-validator-5.1.2.tgz
NPM version: 5.6.0
Node version: 8.9.4
The text was updated successfully, but these errors were encountered: