[BUG] npm view --json outputs illegal JSON for existing package but non-existent version #3184
Labels
Bug
thing that needs fixing
Priority 2
secondary priority issue
Release 7.x
work is associated with a specific npm 7 release
Current Behavior:
npm view <package>@<version> --json
returns an empty or white-space string when answering a query for a package which does exist, but a version descriptor which has no matches. This is illegal JSON and attempting toJSON.parse
it throws an error.Expected Behavior:
npm view <package>@<version> --json
should return valid JSON in this case: eithernull
or something that is contextually relevant to the kind of query, such as perhaps an empty array[]
. E.g.Steps To Reproduce:
Execute
npm view npm@10 --json
.Environment:
OS: any
Node: any
npm: 6+
The text was updated successfully, but these errors were encountered: