1
0
Fork 0

fix(docs): Tutorials updates and corrections

This commit is contained in:
Benjamin F 2022-12-29 06:25:01 -08:00
parent 1634f986c4
commit dcb4b17032
23 changed files with 117 additions and 94 deletions

View file

@ -5,16 +5,16 @@ order: 10
FreeSewing is built with [Node.js](https://nodejs.org/), a JavaScript runtime.
You'll need to install Node JS on your system, and to do so, we'll
use [nvm](https://github.com/nvm-sh/nvm), short for _Node version manager_.
You'll need to install Node.js on your system, and to do so, we'll
use [`nvm`](https://github.com/nvm-sh/nvm), short for _Node Version Manager_.
Using nvm has a number of benefits in comparison with installing Node from
the node.js website, or from a package provided by your linux distribution:
Using `nvm` has a number of benefits in comparison with installing Node.js directly from
the Node.js website, or from a package provided by your Linux distribution:
- You can easily switch between different Node versions
- You can easily switch between different Node.js versions
- Everything gets installed in your home folder, avoiding permission problems
To setup nvm, [follow the install instructions in the nvm
To setup `nvm`, [follow the install instructions in the nvm
README](https://github.com/nvm-sh/nvm#installing-and-updating).
After installation is completed, try running the following command:
@ -23,7 +23,7 @@ After installation is completed, try running the following command:
nvm
```
If all goes well, it should show you the nvm help.
If all goes well, it should show you the `nvm` help.
<Tip>