Why can't I have two versions at once? I thought path was for it? #1155
-
Installed two versions of node.js Why? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The different use cases are spelled out in the Node version management repo. There are millions of users leveraging system-wide Node.js installations. Remember, this is how Node.js was intended to operate, before version managers were created. While there are per-shell use cases, they are part of a larger environment management solution (not just version management). Some tools like nvm, n, and volta dabble in this. I feel they are incomplete solutions, which often create large vulnerability surface areas. For example, in corporate environments, it's common to see older insecure runtimes exploited simply because they are accessible to other programs on the same system (i.e. vulnerable app calls That's all the detail I'm going into. I don't take kindly to being called idiotic, so I'd recommend finding another tool/community to serve your needs. |
Beta Was this translation helpful? Give feedback.
The different use cases are spelled out in the Node version management repo. There are millions of users leveraging system-wide Node.js installations. Remember, this is how Node.js was intended to operate, before version managers were created.
While there are per-shell use cases, they are part of a larger environment management solution (not just version management). Some tools like nvm, n, and volta dabble in this. I feel they are incomplete solutions, which often create large vulnerability surface areas. For example, in corporate environments, it's common to see older insecure runtimes exploited simply because they are accessible to other programs on the same system (i.e. vulnerable app…