From ec08e8c4809684a0e882890bc6f82829dc568831 Mon Sep 17 00:00:00 2001 From: Briggs Elsperger Date: Wed, 11 Jul 2018 23:35:06 -0500 Subject: [PATCH] Changes node version to NPM if a user does not have node he does not have NPM, but a user could have node without NPM --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2523c39..a94ac91 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. NodeJS. To check if you have it type `node -v` in a terminal. If you get back a number bigger than `6` that means you've got it installed. Best way to install node is with NVM. Check link for instructions [here](https://github.com/creationix/nvm#install-script) +1. NPM. To check if you have it type `npm --version` in a terminal. If you get back `Command 'npm' not found, but can be installed with:`, install NPM/Node with NVM. Not with `apt-get` (it causes permission issues). Check link for instructions [here](https://github.com/creationix/nvm#install-script) 2. 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. 3. Clone this repo and get started.