1 ---
2 title: About npm CLI versions
3 slug: /about-npm-versions
4 ---
5
6 The npm command line interface (CLI) is released on a regular cadence. We recommend installing the release that supports your workflow:
7
8 - [latest release](#the-latest-release-of-npm): the most recent stable version.
9
10 ## The `latest` release of npm
11
12 The `latest` release of npm is the most recent stable version. When you install Node.js, npm is automatically installed. However, npm is released more frequently than Node.js, so to install the latest stable version of npm, on the command line, run:
13
14 ```
15 npm install npm@latest -g
16 ```