From 388941d7c8e697c0e215d87780b154d4c1892060 Mon Sep 17 00:00:00 2001 From: Budd Grant <51795889+xlightwaverx@users.noreply.github.com> Date: Wed, 9 Aug 2023 19:10:25 -0400 Subject: [PATCH] Update installation.md --- installation.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/installation.md b/installation.md index 62f61a51..a214058a 100644 --- a/installation.md +++ b/installation.md @@ -1,14 +1,23 @@ # Prerequisites -1. Node and Yarn - Aquired using Node Version Manager (https://github.com/nvm-sh/nvm) +1. Node and Yarn - Acquired using Node Version Manager (https://github.com/nvm-sh/nvm) # Quick Install for Prerequisites 1. Install Node Version Manager ```sh curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash +``` +2. Install the latest version of NodeJS +```sh nvm install node # "node" is an alias for the latest version +``` +3. Install the latest version of NPM for Node +```sh nvm install-latest-npm # get the latest supported npm version on the current node version +``` +4. Install Yarn +```sh npm install --global yarn ```