Skip to main content

What is Angular Framework?



There are many definitions of Angular Framework. I am sharing some of them, all of them lead to same thing.

1. Angular is a TypeScript-based open-source front-end platform that makes it easy to build applications with in web/mobile/desktop. The major features of this framework such as declarative templates, dependency injection, end to end tooling, and many more other features are used to ease the development.

2. Angular is a platform and framework for building single-page client applications using HTML and TypeScript. Angular is written in TypeScript.

3. Angular is a TypeScript-based free and open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS.

4. Angular is a framework and platform that is written in TypeScript.  It is used for developing single page applications employing TypeScript and HTML template language. 

5. Angular is a framework for building client applications in HTML and either JavaScript or a language like Type Script that compiles to JavaScript. The framework consists of several libraries, some of them core and some optional.

Comments

Popular posts from this blog

Why HTML is used?

  Primary use of HTML is to structure a web page and its content.  Let's take an example: You are constructing a house.  While constructing you will be deciding how many BHK you want, how many washroom you want, how many balconies you want, how many light bulb or fans you want, whether you want to have Kids study room or not, etc. Same way while creating a web page, using HTML you can decide how many sections will be in Header, Left Bar, Footer or sidebar. In HTML terminology, see below examples: You want to make three sections - Header, Body and Footer. You can use below HTML code:     <div id="header">               Header Content that also includes other Links of website/page     </div>     <div id="pageBody">               Page Body comes here, It contains main content of page     </div>     <div id="footer">     Page footer comes here. It contains Copyright and Privacy Policy and other links     </div> I hope th

What is HTML?

What is HTML? Full form of HTML is Hyper Text Markup Language. Lets understand each one by one. H = Hyper = Hyper means not linear. Something which does not go only in one direction. For example, in Movie Theater you can watch a movie from beginning to end(one direction only), this is called linear. But in your mobile you can watch a movie  in any direction and even leave one movie and can watch another movie. This is called Hyper(not linear). So, in HTML you can see a page and click on any link to visit that page. Hope you understand the meaning of H in HTML now. T = Text = Text means HTML is based on text. You write tags that are in text format. We will learn HTML tags in details soon. (Kindly follow My BLOG for the same). M = Markup = Markup means what effect HTML tags give to the text inside them. For example HTML have power to make a text BOLD and they also have power to make it Italic. L = Language = HTML is basically a language that tells/instructs BROWSER how to display the pag