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
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@

# Welcome to Dev guide!

So in this repo I **joined** a mix of things that you must have installed on your machine ;)

- [FOR MAC](#for--mac)
- [Xcode](#xcode)
- [Git](#git)
- [iTerm](#iterm)
- [What is iTerm2?](#what-is-iterm2)
- [Oh My Zsh](#oh-my-zsh)
- [nvm ( for nodejs developers )](#nvm--for-nodejs-developers-)
- [Installing node.js](#installing-nodejs)
- [Using node.js](#using-nodejs)
- [Docker](#docker)
- [Visual Studio Code](#visual-studio-code)


## FOR MAC

Expand Down Expand Up @@ -56,12 +67,18 @@ export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || pr
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
```

## Instaling node.js
## Installing node.js

- Installing specific version
```bash
$ nvm install YOUR_NODE_VERSION
```

- Installing latest LTS release
```bash
$ nvm install --lts
```

## Using node.js

```bash
Expand Down