The only questions I found in my search yielded upgrading NPM modules to the latest.
Is there a way to make it so NPM downloads the latest compatible modules with your running node version?
Typically, if you npm install [module]
and node isn't compatible, it will just throw an error. Can NPM see your running Node version and pick the most latest version that will run on it (without having to find the version yourself, and run npm install [module]@[version]
)?