# HTL 2023/24 - 5th [https://github.com/rstropek/htl-2023-24-5th/](https://github.com/rstropek/htl-2023-24-5th/) ## Angular ### Node Update Node.js to latest LTS. Tip: Consider using [Node Version Manager](https://github.com/nvm-sh/nvm) ### VSCode * Install latest version of VSCode * Install latest version of [Angular Essentials](https://marketplace.visualstudio.com/items?itemName=johnpapa.angular-essentials) ### Updating Angular ```bash npm install --global @angular/cli ``` ### Creating a New Angular App ```bash ng new \ --directory <your-folder-name> \ --routing \ --skip-git \ --skip-tests \ --standalone \ --strict \ --style scss \ <your-project-name> ```