From e7fb8bdc4a7fb07692014a4f525889b699a95065 Mon Sep 17 00:00:00 2001 From: Scott Vanderbeek <52388100+ScottAwesome@users.noreply.github.com> Date: Fri, 10 Jun 2022 13:15:22 -0700 Subject: [PATCH] Update get_started.md This updates the `get_started` section to include a small blurb about newer version of npm that use `--location=global` as opposed to `install -g` --- websites/rushjs.io/docs/pages/intro/get_started.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/websites/rushjs.io/docs/pages/intro/get_started.md b/websites/rushjs.io/docs/pages/intro/get_started.md index 9337c059d..0c8063843 100644 --- a/websites/rushjs.io/docs/pages/intro/get_started.md +++ b/websites/rushjs.io/docs/pages/intro/get_started.md @@ -12,6 +12,12 @@ Want to see Rush in action? The only prerequisite you need is [NodeJS](https://n $ npm install -g @microsoft/rush ``` +or for npm versions >= 8.12 + +```sh +$ npm install --location=global @microsoft/rush +``` + (Don't type the **"$"** of course.) :-) **For command-line help, do this:**