Replies: 1 comment 4 replies
-
npm comes included in the official tarballs, so it's not really possible to not include it, however I think the idea of specifying alternate npm/package manager locations/versions does make sense. I think that would make more sense as an override rather than simply not including npm though |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not entirely sure how the api would look to support this but I'm curious if it is possible to optionally install nodejs versions without npm.
This would enable two things, from what I can tell:
corepack
: right now, the corepack shim fails to install when attempting to enable for npm (corepack enable npm
) from a node/corepack version managed by rtx.prefix
in an.npmrc
file allows you to move your global npm store to something like,~/.npm-global
, allowing globally install modules to persist across versions (including npm itself).Beta Was this translation helpful? Give feedback.
All reactions