With my Node versions managed via NVM, I want to be on the latest LTS. You can ensure that happens with these commands:
$ nvm install --lts
$ nvm alias default lts/*
default -> node (-> v24.16.0)
These two commands combine to say: “Install the latest LTS, and make my default that version.”
See nvm --help for more information.