Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,63 @@ brew install yarn
```

- Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. v1.22.0) should be returned.

## Ubuntu

### Visual Studio Code

- Run the following command in the terminal

```
sudo snap install code --classic
```

### Node.js

- Run the following command in the terminal

```
sudo snap install node --classic --edge
```

- Verify that node is installed by running `node --version`. The node version (e.g. v13.0.0-nightly20190802452b393c1f) should be returned.

### Yarn

- Run the following command in the terminal

```
sudo apt install yarnpkg
```

- Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. 1.17.3) should be returned.

## Arch Linux

### Visual Studio Code

- Run the following command in the terminal

```
pacman -S code
```

### Node.js

- Run the following command in the terminal

```
pacman -S nodejs
```

- Verify that node is installed by running `node --version`. The node version (e.g. v13.10.0) should be returned.

### Yarn

- Run the following command in the terminal

```
pacman -S yarn
```

- Verify that yarn is installed by running `yarn --version`. The yarn version (e.g. v1.22.0) should be returned.