Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is difference between angularjs and angular cli?

There are 2 things available in angular : 1.angular cli 2.angularjs

please describe briefly. thanks

like image 393
Swadesh Ranjan Dash Avatar asked Aug 01 '17 11:08

Swadesh Ranjan Dash


People also ask

What is Angular CLI and how is it different from AngularJS?

Angular CLI is a tool to create Angular 2 applications. Angular CLI is mandatory for creating AngularJs applications. AngularJS is a structural framework used to create dynamic web applications. Angular CLI uses modules from node.

Is Angular CLI different from Angular?

Angular CLI is essential for developing Angular JS apps. Moreover, angular JS happens to be a structural framework for developing dynamic web apps, which can be achieved if you hire Angular JS developers. While Angular CLI uses modules from node JS, HTML is utilized by Angular JS as the template language.

What is a 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.

Is AngularJS better than Angular?

Each version of Angular has significant benefits, but there is much to gain in being up-to-date with the latest version. Angular is decidedly faster than AngularJS, has a mobile-driven approach, executes better with components, and enables smoother migration from earlier versions.


2 Answers

Angular-cli a command line interface. and it helps to add new components, directives, and services, from the command line; it builds application based on your input. you can add code, test cases via command itself...

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 ... you need angularjs library to develop application

like image 168
Mohideen bin Mohammed Avatar answered Oct 03 '22 15:10

Mohideen bin Mohammed


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.

AngularJS : Is the famous JavaScript based framework.

Resume : In general we install Angular-CLI globally to help us in initialization or modification of our Angular projects

like image 25
Youness HARDI Avatar answered Oct 03 '22 17:10

Youness HARDI