Skip to content

Commit 568d121

Browse files
Merge pull request #26 from devinekask/SimonVanherweghe-patch-10
enhance clarity in packages-02-npm.md
2 parents c151185 + c4f1080 commit 568d121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/docs/modules/packages-02-npm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: NPM
33
---
44

5-
In the [previous chapter](packages-01-modules.md) we learned how to make our code more reusable by splitting it up into modules. But it doesn't stop there. Now, we want to be able to share modules with other developers.
5+
In the previous chapter we learned how to make our code more reusable by splitting it up into modules. But it doesn't stop there. Now, we want to be able to share modules with other developers.
66

77
To make something like that possible, we would need a couple of things:
88

@@ -44,7 +44,7 @@ You might have noticed the 'Node' in Node package manager, it won't come as a su
4444
Be sure to have a `.zshrc` or `.zprofile` file in your home directory. If you don't have one, create it with `touch ~/.zshrc` Otherwise, the installation of nvm will fail.
4545
:::
4646

47-
To handle different Node.js versions easaly, there is a tool called `nvm` (node version manager) Lets start by [installing](https://github.com/nvm-sh/nvm#installing-and-updating) this one first. [^1] See the documentation for the most recent version, the command is something like this (but change the version number): `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.XX.X/install.sh | bash`
47+
To handle different Node.js versions easaly, there is a tool called `nvm` (node version manager) Lets start by [installing](https://github.com/nvm-sh/nvm#installing-and-updating) this one first. [^1] See the documentation for the most recent version, the command is something like this (**but change the version number**): `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.XX.X/install.sh | bash`
4848

4949
To doule-check if everything went well, close every terminal instance and open a new window. Type `nvm` and you should get an overview with all the commands nvm has to offer.
5050

0 commit comments

Comments
 (0)