# uninstallation
npm uninstall -g @angular/cli
# Installation
npm install -g @angular/cli
npm install -g @angular/[email protected]
# Check version
ng --version
# Creation
ng new angular-starter
# Checko dependencies
npm outdated
npm list --depth=0
# PWA Installation
ng add @angular/pwa
# SSR installation
ng add @angular/ssr
# Change scripts
"scripts": {
"serve": "node dist/angular-starter/server/server.mjs"