-
Notifications
You must be signed in to change notification settings - Fork 8
Workflow: Terminal, Shell, Node, VSCode
Daniel Shiffman edited this page Oct 30, 2023
·
11 revisions
- old workflow series
- other links?
- Mac Users: Use terminal found under Applications > Utilities or download iTerm.
- Windows Users: You might use the start command or PowerShell.
-
echo
: Print text to the terminal. -
pwd
: Print working directory. -
cd
: Change directory. -
ls
: List the contents of a directory.
- Oh My Zsh for more details and installation instructions.
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 install <version>
: Install a specific version of Node. -
nvm use <version>
: Switch to a specific version of Node. -
nvm list
: List installed Node versions.