There's our internal deployed registry (JFrog Artifactory). And there we have an NPM registry with repo npm-virtual, which can be accessed for requests by a link https://artifactory.xyz.com/artifactory/api/npm/npm-virtual
I wonder, is there an npm/npx/... bash command, that can help me get the list of every package, that we contain in our registry?
npx npm-registry-fetch ls --registry=https://artifactory.xyz.com/artifactory/api/npm/npm-virtual
resulted with:
npm ERR! could not determine executable to run
Every other command I've found requires a reference to exact package that I'm looking for.
One way to get all packages is to use the JFrog CLI search command:
Results:
Combining with
jq:Results:
Read more about it here: