Skip to main content

Angular Basic Understanding

AngularJS

Angular is a Type Script-based open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations. 


Key Modules
-Components
-Routing
-Directives
-Pipe
-Services
-Dependency Injection


Main Thread. Templates integration
Data binding and directives
Services and dependency injection
Http and observables
Navigation and routing
Angular CLI


Angular is...

A javascript framework
For building client-side  applications
using HTML,Css and javascript


Why Angular .?

Angular makes our html more expressive power up our html with features such as if conditions,for loops,and local variables

Angular has power-data binding we can easily display fields from our data model,track changes and process updates from the user .

Angular promotes modularity by design.our applications become a set of building blocks,making it easier to create and reuse content

Angular has built-in support for communication with a backed service .This makes it easy for our web application to integrate with a back end service to get and post data or execute server side business logic


Angular is built for speed it has faster initial loads,faster change detection and improve rendering times angular is modern it takes advantage of features provided in the latest java-script standards and beyond such a classes modules and decorators both greenfield and legacy browsers


Angular has a simplified API it has fewer built in directives.



In Angular an application is comprised of a set of components and services that provides functionality across those components

What is an angular component?
Each component is comprised of a template which is the HTML for the user interface fragment defining a view for the application .\
Add to that a class for the code associated with the view

The class contains the property or the data elements available for the use in the view and methods which perform actions for the view such as responding to a button click .

A component also has metadata, which provides the additional information about the component to angular.It is this metadata that identifies the class as an Angular






Comments

Popular posts from this blog

How to execute Python Script in PyCharm-Configuration

Compile a VBScript into an EXE – iExpress

Sometimes you need to compile a vbscript into an EXE. There are a few applications that allow you to do this, however there is one already installed on the windows build called  iExpress . Before using this, you need to make sure your script works and launches what it is supposed to. E.g. if it launches Internet Explorer with a specific URL. Go to start menu > run and type  iExpress  and press enter. Next > until you are on  Package title . Here enter a title for your exe. Next > No prompt.  Next > Do not display a license.  Next > Add –  Here you will browse to your vbscript .  Next > In the install program section, you need to point to cscript.exe as this is what will run your script. So enter  C:\Windows\System32\cscript.exe “enter vbscript here.vbs” .  Next > Hidden.  Next > No message.  Next > Here you will select where you want to save your EXE files. Then ...