Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 586 Bytes

installation.md

File metadata and controls

46 lines (29 loc) · 586 Bytes

Angular Installation

Installation

# 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

SSR & PWA

# PWA Installation
ng add @angular/pwa

# SSR installation
ng add @angular/ssr

# Change scripts
  "scripts": {
    "serve": "node dist/angular-starter/server/server.mjs"