These commands are use for create a project , project component, services, models etc in angular. The list of all command and there information are availabel here. Setup CLI We need to install CLI first of all open command prompt and write down given command . It will automaticaly install Angular CLI in system. Before this you need Node.js Installed in your system. Go to node official website simply downlod the installer and run on your system. After that this command will work for you. npm install @angular/cli -g Create new angular projects ng new: Command This command is user to create a new project with angular CLI. ng new project name Example ng new project-1 --dry run instruction for CLI Simply when we don’t know what a command do in our system. We can use –dry run instruction with command it will show its working in console but don’t do anything in system. Example ng new project –dry run --skip-install instruction This instruc...