From 2c5bb33cfc713e55a306aed8a7b124331576fd9d Mon Sep 17 00:00:00 2001 From: Marvin Gay <60161078+marvingay@users.noreply.github.com> Date: Wed, 28 Oct 2020 22:00:21 -0400 Subject: [PATCH] Update node installation link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7aa284b..2d02e8f 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ There will eventually be a suggested order of completion, but at this time since ## HOW TO USE THESE EXERCISES Before you start you should have a few things installed on your machine: -1. NPM. To check if you have NPM, type `npm --version` in a terminal. If you get back `Command 'npm' not found, but can be installed with:`, do NOT follow the instructions in the terminal to install with `apt-get` (this causes permission issues). Instead, install NPM/Node with NVM by following the instructions [here](https://github.com/TheOdinProject/curriculum/blob/master/web_development_101/installations/installing_node.md). +1. NPM. To check if you have NPM, type `npm --version` in a terminal. If you get back `Command 'npm' not found, but can be installed with:`, do NOT follow the instructions in the terminal to install with `apt-get` (this causes permission issues). Instead, install NPM/Node with NVM by following the instructions [here](https://github.com/TheOdinProject/curriculum/blob/master/foundations/installations/installing_node.md). 3. Jasmine. Jasmine is a testing framework for Javascript. Type `jasmine -v` to check for it. If you need to install it, type `npm install -g jasmine` to do so. 4. Clone this repo and get started.