You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/getting-started/configuring-your-local-environment/about-npm-versions.mdx
-27
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,6 @@ slug: /about-npm-versions
6
6
The npm command line interface (CLI) is released on a regular cadence. We recommend installing the release that supports your workflow:
7
7
8
8
-[latest release](#the-latest-release-of-npm): the most recent stable version.
9
-
-[next release](#the-next-release-of-npm): the version in current development.
10
9
11
10
## The `latest` release of npm
12
11
@@ -15,29 +14,3 @@ The `latest` release of npm is the most recent stable version. When you install
15
14
```
16
15
npm install npm@latest -g
17
16
```
18
-
19
-
## The `next` release of npm
20
-
21
-
<Note>
22
-
23
-
The `next` release of npm may contain features that do not match the features ultimately released in the `latest` stable version of npm.
24
-
25
-
More.
26
-
27
-
</Note>
28
-
29
-
The `next` release of npm is the version undergoing current development; it has the latest changes and newest set of features.
30
-
31
-
The `next` release of npm is the most recent unreleased version of npm that is eventually released as the `latest` version. You may want to update your npm client to the `next` release to test your packages against it before `latest` is released.
32
-
33
-
To update to the `next` release of npm, on the command line, run:
34
-
35
-
```
36
-
npm install npm@next -g
37
-
```
38
-
39
-
<Note>
40
-
41
-
Depending on the development cycle, `npm install npm@next -g` may reinstall the `latest` release of npm.
Copy file name to clipboardExpand all lines: content/getting-started/troubleshooting/try-the-latest-stable-version-of-npm.mdx
-5
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,6 @@ You can upgrade to the latest version of npm using:
20
20
npm install -g npm@latest
21
21
```
22
22
23
-
Or upgrade to the most recent release:
24
-
```
25
-
npm install -g npm@next
26
-
```
27
-
28
23
## Upgrading on Windows
29
24
_Microsoft wrote a small command line tool to automate the steps below. [You can go and download it here](https://github.com/felixrieseberg/npm-windows-upgrade) - or stick with the manual path outlined below._
0 commit comments