setup/doc/yarn.md

19 lines
212 B
Markdown
Raw Permalink Normal View History

2022-03-15 13:55:33 +01:00
# Setup Yarn
* install [Node](node.md)
* check if Npm is successfully installed
```
npm -v
```
* install Yarn using Npm
```
npm i --global yarn
```
* verify that Yarn is installed sccessfully
```
yarn -v
```