Skip to content

Workflow: Terminal, Shell, Node, VSCode

Daniel Shiffman edited this page Oct 30, 2023 · 11 revisions

πŸš‚ Sections Covered

πŸš€ Introduction

  • old workflow series
  • other links?

πŸ’» Terminal Basics

  • Mac Users: Use terminal found under Applications > Utilities or download iTerm.
  • Windows Users: You might use the start command or PowerShell.

Unix Commands:

  • echo: Print text to the terminal.
  • pwd: Print working directory.
  • cd: Change directory.
  • ls: List the contents of a directory.

🐚 Shell (ZSH) and Oh My Zsh

  • Oh My Zsh for more details and installation instructions.

πŸ“¦ Installing Node.js using NVM

You can install node.js through the node website or using NVM (Node Version Manager). For the tutorials, using Node version 18.18 is recommended.

NVM Commands Covered:

  • nvm install <version>: Install a specific version of Node.
  • nvm use <version>: Switch to a specific version of Node.
  • nvm list: List installed Node versions.
Clone this wiki locally