Skip to main content

AngularJs Introduction To Javascript Framework For WebApplications

  • HTML is a great declarative language for static documents but it fails to serve our purpose when there come a need of creating dynamic views in web apps .
  • The impedance mismatch between dynamic applications and static documents is often solved with:
    Angular Js extends the HTML by adding built-in attributes and components and also provides an ability to create custom attributes using simple JavaScript.
  • Hence making it dynamic application.
  • Thus Angular is what HTML would have been, had it been designed for web applications.
  • Note:-Angular JS is entirely based on HTML and JavaScript, so there is no need to learn another syntax or language.


AngularJs Introduction What is Angular Js?

Angular JS is a javascript framework for WebApplications.
HTML is a great declarative language for static documents but it fails to serve our purpose when there come a need of creating dynamic views in webapps.
The impedance mismatch between dynamic applications and static documents is often solved with:
Angular Js extends the HTML by adding built-in attributes and components and also provides an ability to create custom attributes using simple JavaScript.
Hence making it dynamic application. Thus Angular is what HTML would have been, had it been designed for web applications.
Note:-Angular JS is entirely based on HTML and JavaScript, so there is no need to learn another syntax or language.


Comments

Popular posts from this blog

About Node.js

As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications. In the following "hello world" example, many connections can be handled concurrently. Upon each connection the callback is fired, but if there is no work to be done, Node will sleep. const http = require ( 'http' ) ; const hostname = '127.0.0.1' ; const port = 3000 ; const server = http . createServer ( ( req , res ) = > { res . statusCode = 200 ; res . setHeader ( 'Content-Type' , 'text/plain' ) ; res . end ( 'Hello World\n' ) ; } ) ; server . listen ( port , hostname , ( ) = > { console . log ( `Server running at http:// ${ hostname } : ${ port } /` ) ; } ) ; This is in contrast to today's more common concurrency model where OS threads are employed. Thread-based networking is relatively inefficient and very difficult to use. Furthermore, users of Node are free from worries o...

Pay Per Click by AppWorks Technologies Pvt Ltd

Making telescopes that curve and twist

New computational tool automates design of telescoping structures that provide compact storage and rapid deployment. Shown here: a complex telescoping lizard expands to many times its original volume, serving as a stress test of the method. Credit: Chris Yu/Carnegie Mellon University A new tool for computational design allows users to turn any 3D shape into a collapsible telescoping structure. New mathematical methods developed by researchers at Carnegie Mellon University capture the complex and diverse properties of such structures, which are valuable for a variety of applications in 3D fabrication and robotics—particularly where mechanisms must be compact in size and easily deployable. The research, "Computational Design of Telescoping Structures," led by Carnegie Mellon Professors Stelian Coros and Keenan Crane and PhD student Christopher Yu, will be presented at the annual SIGGRAPH conference, 30 July to 3 August in Los Angeles. The conference each year spotlights the...