Skip to content

Commit 7b7494b

Browse files
committed
Fix typos and rewording on README
1 parent d1bb70d commit 7b7494b

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

README.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,41 +19,43 @@ npm install
1919
npm start
2020
```
2121

22-
## Installing and running workshop modules
22+
## Installing and running individual nodeschool workshop packages
2323

24-
Please refer to the [nodeschool site](http://nodeschool.io/#workshoppers) for detailed instructions. In short, there two ways to install the workshop modules :
24+
Please refer to the [nodeschool site](http://nodeschool.io/#workshoppers) for detailed instructions. In short, there are two ways to install the workshop modules :
2525

2626
- **Globally** (easiest)
2727

28-
`npm install -g module_name`
28+
Depending on the npm version, `npm packages` get installed in different routes. To have access to them globally. Do
29+
30+
`npm install -global package_name` or `npm install -g package_name`
31+
32+
If you get a `permission denied` **error**. Run the previous command with `sudo`.
33+
34+
`sudo npm install -g package_name`
2935

30-
This will make the module available globaly in your `$PATH`. Just run it by calling it. **For example :**
36+
Now just run it by simply calling it. **For example :**
3137

3238
`npm install -g javascripting` **(installs it)**
3339

34-
![install module](/images/readme-images/install_module.png?raw=true)
40+
![install_module](/images/readme-images/install_module.png?raw=true)
3541

3642

3743
`javascripting` **(runs it)**
3844

39-
![run module](/images/readme-images/run_module.png?raw=true)
40-
41-
*Depending on your system configuration you may neeed administrator priviliges to install `npm packages` globally.*
42-
43-
*In which case just run the previous command with `sudo`.
44-
` sudo npm install -g module_name`.*
45+
![run_module](/images/readme-images/run_module.png?raw=true)
46+
`
4547

4648
- **Custom directory** (a bit more configuration)
4749

48-
If you would like to keep all the node_school workshop modules inside a custom directory while you work through them. **Using our previous example :**
50+
If you would like to keep all the node_school workshop packages inside a custom directory while you work through them. **Using our previous example :**
4951

5052
```
5153
~ mkdir -p node_school
52-
cp node_school
54+
cd node_school
5355
npm install javascripting
5456
```
5557

56-
From within the `node_school` directory now run `node_modules/learnyounode/bin/javasripting` to start it.
58+
From within the `node_school` directory now run `node_modules/learnyounode/bin/javascripting` to start it.
5759

5860
This is because you need to run the executable from within the directory itself since it's not available globally in your `$PATH`
5961

0 commit comments

Comments
 (0)