corepack icon indicating copy to clipboard operation
corepack copied to clipboard

`npm install -g` corepack enables Corepack

Open MikeMcC399 opened this issue 9 months ago • 4 comments

Situation

If Corepack is installed globally using npm, as documented in the README > Manual Installs section using

npm install -g corepack

then Corepack behaves as if corepack enable had been executed.

This differs from how Corepack behaves when it is installed together with Node.js as a bundled component. In this case Corepack is not enabled by default.

The difference between defaults of Corepack being enabled or not, depending on how Corepack is installed, is not documented in the README, neither under the Manual Installs section, nor under the corepack enable section.

Suggestion

Add the information to the README document that using npm install -g corepack effectively executes corepack enable.

MikeMcC399 avatar Mar 23 '25 16:03 MikeMcC399

The documentation should also mention that if you had previously selectively enabled Corepack based on a Node.js installation for any individual package manager, then installing with npm enables Corepack for all eligible package managers. It overrides any previous selection.

For example

corepack enable yarn # enable only Yarn
npm install -g corepack

results in both Yarn and pnpm being enabled.

MikeMcC399 avatar Mar 23 '25 18:03 MikeMcC399

It's also frustrating there's no reliable/explicit way to determine if corepack is enabled or not.

ljharb avatar Mar 24 '25 04:03 ljharb

@ljharb

It's also frustrating there's no reliable/explicit way to determine if corepack is enabled or not.

I have also found that to be an issue working in a hybrid desktop environment where I need to enable and disable Corepack. I end up just calling corepack enable / corepack disable blindly, not knowing what the existing status is. Probably this should be a separate topic to add a corepack status command or similar.

MikeMcC399 avatar Mar 24 '25 06:03 MikeMcC399

  • related to this issue also https://github.com/nodejs/corepack/issues/697

MikeMcC399 avatar Apr 08 '25 12:04 MikeMcC399