From 5dc8687295eb4bd72ca82c22cdeba652b8e3f27f Mon Sep 17 00:00:00 2001 From: Wallace Andrade Date: Wed, 6 Apr 2022 10:03:15 -0300 Subject: [PATCH] docs: add table of contents and command to install latest lts release of nodejs --- README.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a9d314..ef00e96 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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