I am trying to update by NodeJS package in Rhel 8.5 with nvm command.
On running nvm ls-remote
I am getting the output as NA.
Is there a way to debug this issue? Looks like nvm does not support any debug or verbose mode.
The problem with my server was I was configuring the https_proxy to an https URL. Changing that to HTTP URL fixed the issue.
Instead of giving
export https_proxy="https://proxy-host:8080"
Use this,
export https_proxy="http://proy-host:8080"