Now it’s time to install VSCode Text Editor, a sophisticated text editor for code, markup, and prose.
To get started, download VSCode. As you finish downloading, it is critical that you go through installation following these steps, in exactly this order:
VSCode’s documentation is excellent. Review it now to familiarize yourself with the basics.
Open VSCode
Open the Command Palette (⇧⌘P) and type ‘shell command’
Then, click on the Shell Command: Install ‘code’ command in PATH command.
Restart the terminal for the new $PATH value to take effect.
It’s important to establish a default editor with Git (version control software) so that when Git opens files, that happens in your chosen editor.
Type the following command in your terminal:
git config --global core.editor "code --wait"
This command will not return any message unless there is an error.
To install Node, open your Terminal, and enter:
brew install node
It will take a few minutes for the download and installation process to complete.
Now that you have Node installed, you can install Node packages using its package manager, NPM. Open your terminal and enter:
npm -g i eslint git-open live-server
You should see a lot of feedback as it installs.