https://causeway.soe.ucsc.edu/#/select/-components
https://www.theodinproject.com/
General package manager for macOS/Linux
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Node version manager used to install & use specific versions of node in your projects.
brew install nvm
nvm install 14
nvm use 14
git add <filename>
git commit -m "Description of what you've done"
git push
git fetch
git checkout <branch-name>
git branch <new branch> <existing branch>
ng generate @tech4good/angular-schematics:<schematic>
where (schematic = module, container, component, or entity)
Note: The Angular schematic script cannot create a component when its container is nested in a subfolder. When creating a component within a container that's enclosed by a folder (e.g. activities/draw-it-out/, temporarily move the container into the app folder, run the angular schematics, and move the container back into the original folder.