Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between Angular CLI and quickstart?

I have been watching some videos that related to angularJS 2, but i would like to know What is the difference between Angular CLI and quickstart?

like image 830
Marisol Woody Avatar asked Dec 05 '16 00:12

Marisol Woody


People also ask

What is the difference between Angular and Angular CLI?

AngularJS is a structural framework for dynamic web apps. It lets you use HTML as your template language and lets you extend HTML's syntax to express your application's components clearly and succinctly.It controlls the code to what it actually to do... Angular CLI is "Command Line Interface".

What is an Angular CLI?

The Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell.

What is the difference between Angular CLI and npm?

NPM is basically a package manager which acts as a dependency provider. If there are many small packages, required to build a large one, NPM is the one hotspot which will provide us with the packages. Angular-CLI is one of those packages. As far as NG is concerned, it is the core module of Angular.

Is Angular version and Angular CLI version same?

Note: After angular 6 the Angular-CLI version is the same as the Angular version. Now, if you want to find which Angular-CLI version to use for which version of Angular you can find that here AngularCLI Package.


1 Answers

Angular-CLI is a TOOL to create your angular 2 application. It provides commands to generate code such as components, services and directives to make angular 2 development easier to the developer. It also allows you to build your application and serve your application as you are developing.

Angular 2 Quick Start is a TUTORIAL to create a simple Angular 2 app. The Quick Start also has a Plunkr (code) that the developer can use to try out some ideas with Angular 2. Just like the name says it... it quickly gets you going with Angular 2.

For a real angular 2 application you will be using the Angular-CLI since it provides the tools (commands) you need for your development. Hope this helps.

like image 183
coderdark Avatar answered Oct 13 '22 14:10

coderdark