From 1e771fa079b2aac5fb17a7a9b65142a305852ea9 Mon Sep 17 00:00:00 2001 From: Sh1710 <72331454+Sh1710@users.noreply.github.com> Date: Thu, 8 Oct 2020 21:02:57 +0530 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2d45d58..91bc62e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +## JavaScript Exercises These are a series of javascript exercises intended to be used alongside the curriculum at 'The Odin Project' They start very simply, but get more involved as you progress through them. There will eventually be a suggested order of completion, but at this time since we are still in the process of creating more exercises the order is subject to change and has not yet been specified... In general however there are a couple which make a good "starting point" feel free to at least start with these: @@ -7,6 +8,7 @@ There will eventually be a suggested order of completion, but at this time since 1. Reverse String ## HOW TO USE THESE EXERCISES +## READ THIS CAREFULLY 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). 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.