• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Corepack
2
3<!-- introduced_in=v14.19.0 -->
4
5<!-- type=misc -->
6
7<!-- YAML
8added:
9  - v16.9.0
10  - v14.19.0
11-->
12
13> Stability: 1 - Experimental
14
15_[Corepack][]_ is an experimental tool to help with
16managing versions of your package managers. It exposes binary proxies for
17each [supported package manager][] that, when called, will identify whatever
18package manager is configured for the current project, transparently install
19it if needed, and finally run it without requiring explicit user interactions.
20
21This feature simplifies two core workflows:
22
23* It eases new contributor onboarding, since they won't have to follow
24  system-specific installation processes anymore just to have the package
25  manager you want them to.
26
27* It allows you to ensure that everyone in your team will use exactly the
28  package manager version you intend them to, without them having to
29  manually synchronize it each time you need to make an update.
30
31## Workflows
32
33### Enabling the feature
34
35Due to its experimental status, Corepack currently needs to be explicitly
36enabled to have any effect. To do that, run [`corepack enable`][], which
37will set up the symlinks in your environment next to the `node` binary
38(and overwrite the existing symlinks if necessary).
39
40From this point forward, any call to the [supported binaries][] will work
41without further setup. Should you experience a problem, run
42[`corepack disable`][] to remove the proxies from your system (and consider
43opening an issue on the [Corepack repository][] to let us know).
44
45### Configuring a package
46
47The Corepack proxies will find the closest [`package.json`][] file in your
48current directory hierarchy to extract its [`"packageManager"`][] property.
49
50If the value corresponds to a [supported package manager][], Corepack will make
51sure that all calls to the relevant binaries are run against the requested
52version, downloading it on demand if needed, and aborting if it cannot be
53successfully retrieved.
54
55### Upgrading the global versions
56
57When running outside of an existing project (for example when running
58`yarn init`), Corepack will by default use predefined versions roughly
59corresponding to the latest stable releases from each tool. Those versions can
60be overridden by running the [`corepack prepare`][] command along with the
61package manager version you wish to set:
62
63```bash
64corepack prepare yarn@x.y.z --activate
65```
66
67Alternately, a tag or range may be used:
68
69```bash
70corepack prepare pnpm@latest --activate
71corepack prepare yarn@stable --activate
72```
73
74### Offline workflow
75
76Many production environments don't have network access. Since Corepack
77usually downloads the package manager releases straight from their registries,
78it can conflict with such environments. To avoid that happening, call the
79[`corepack prepare`][] command while you still have network access (typically at
80the same time you're preparing your deploy image). This will ensure that the
81required package managers are available even without network access.
82
83The `prepare` command has [various flags][]. Consult the detailed
84[Corepack documentation][] for more information.
85
86## Supported package managers
87
88The following binaries are provided through Corepack:
89
90| Package manager | Binary names      |
91| --------------- | ----------------- |
92| [Yarn][]        | `yarn`, `yarnpkg` |
93| [pnpm][]        | `pnpm`, `pnpx`    |
94
95## Common questions
96
97### How does Corepack interact with npm?
98
99While Corepack could support npm like any other package manager, its
100shims aren't enabled by default. This has a few consequences:
101
102* It's always possible to run a `npm` command within a project configured to
103  be used with another package manager, since Corepack cannot intercept it.
104
105* While `npm` is a valid option in the [`"packageManager"`][] property, the
106  lack of shim will cause the global npm to be used.
107
108### Running `npm install -g yarn` doesn't work
109
110npm prevents accidentally overriding the Corepack binaries when doing a global
111install. To avoid this problem, consider one of the following options:
112
113* Don't run this command; Corepack will provide the package manager
114  binaries anyway and will ensure that the requested versions are always
115  available, so installing the package managers explicitly isn't needed.
116
117* Add the `--force` flag to `npm install`; this will tell npm that it's fine to
118  override binaries, but you'll erase the Corepack ones in the process. (Run
119  [`corepack enable`][] to add them back.)
120
121[Corepack]: https://github.com/nodejs/corepack
122[Corepack documentation]: https://github.com/nodejs/corepack#readme
123[Corepack repository]: https://github.com/nodejs/corepack
124[Yarn]: https://yarnpkg.com
125[`"packageManager"`]: packages.md#packagemanager
126[`corepack disable`]: https://github.com/nodejs/corepack#corepack-disable--name
127[`corepack enable`]: https://github.com/nodejs/corepack#corepack-enable--name
128[`corepack prepare`]: https://github.com/nodejs/corepack#corepack-prepare--nameversion
129[`package.json`]: packages.md#nodejs-packagejson-field-definitions
130[pnpm]: https://pnpm.js.org
131[supported binaries]: #supported-package-managers
132[supported package manager]: #supported-package-managers
133[various flags]: https://github.com/nodejs/corepack#utility-commands
134