Windows habilitar habilitar en Power Shell la ejecución de script ```Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned``` Instalar Angular como admnistrador o como ROOT ```npm install -g @angular/cli``` Crea el proyecto. ```ng new ``` Crear proyecto usando module ```ng new --no-standalone ``` Crea o genera el modulo para home `ng g m --routing` Crea o general el componente para el home `ng g c --inline-style --skip-tests` crea componente y lo importa en un modulo en especifico `ng g c --inline-style --skip-tests --module ` crear modulo y rutas - lazy load `ng g m modules/search --routing`