From a041dc7f2242594b6b181dc482e6cbc3eaa24fa5 Mon Sep 17 00:00:00 2001 From: Nic Wilson Date: Thu, 15 Nov 2018 00:09:00 -0600 Subject: [PATCH] Update index.md (#26640) While NPM is cagey about what NPM actually stands for (https://www.quora.com/I-keep-hearing-NPM-doesnt-stand-for-Node-Package-Manager-what-does-it-stand-for), since it's a package manager thought it would be helpful if we referred to it as such here. --- guide/english/angular/command-line-interface/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/angular/command-line-interface/index.md b/guide/english/angular/command-line-interface/index.md index d14c82a6e6..be5a7cc27d 100644 --- a/guide/english/angular/command-line-interface/index.md +++ b/guide/english/angular/command-line-interface/index.md @@ -10,7 +10,7 @@ Angular is closely associated with its command-line interface (CLI). The CLI str #### Installation -The Angular CLI requires [Node.js and Node Packet Manager (NPM)](https://nodejs.org/en/). You can check for these programs with the terminal command: `node -v; npm -v`. Once installed, open a terminal and install the Angular CLI with this command: `npm install -g @angular/cli` or `npm install -g @angular/cli@latest` to install the latest version of angular cli. This can be executed from anywhere on your system. The CLI is configured for global use with the `-g` flag. +The Angular CLI requires [Node.js and Node Package Manager (NPM)](https://nodejs.org/en/). You can check for these programs with the terminal command: `node -v; npm -v`. Once installed, open a terminal and install the Angular CLI with this command: `npm install -g @angular/cli` or `npm install -g @angular/cli@latest` to install the latest version of angular cli. This can be executed from anywhere on your system. The CLI is configured for global use with the `-g` flag. Verify the CLI is there with the command: `ng -v`. This outputs several lines of information about the angular cli installed in your machine. One of these lines state the version of the installed CLI.