AngularJS learning

Discussion in 'JavaScript and AJAX' started by RRT2010, May 9, 2016.

  1. RRT2010

    RRT2010 New Member

    Joined:
    Apr 7, 2011
    Messages:
    9
    Likes Received:
    0
    Trophy Points:
    1
    Location:
    India
    Hi All,

    I am starting to learn angularJS. What is the best way to do so .
    What server can i install on my Windows machine , so that i can run the samples that i create?
    I am using MicroSoft WebMatrix, but it does not appear very good.
     
  2. Claire_Anderson

    Claire_Anderson Member

    Joined:
    Aug 9, 2016
    Messages:
    41
    Likes Received:
    6
    Trophy Points:
    8
    Gender:
    Male
    Location:
    UK
    Home Page:
    http://www.hire-php-developers.co.uk/
    To develop applications in Angular, you need to code using JavaScript and JavaScript is the minimal pre-requisite for learning Angular. But you don't need to be an a expert JS developer. If you are interested in learning Angular JS then you can check codeschool and Codeacedmy websites and you can run the applications using Node.js server.
     
  3. imtechnource

    imtechnource New Member

    Joined:
    Jun 7, 2016
    Messages:
    24
    Likes Received:
    0
    Trophy Points:
    1
    You can keep the node.JS as the server. Mostly, Angular JS is used for the front end purpose and it helps a developer to develop a website more responsive. To run an angular.JS application, you need to install the angular.JS file in your main package or put the link in the <script></script> section of your webpage. More for information you can refer w3school.com.
     
  4. meenal deshpande

    meenal deshpande New Member

    Joined:
    Oct 11, 2018
    Messages:
    20
    Likes Received:
    2
    Trophy Points:
    3
    Gender:
    Female
    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. AngularJS's data binding and dependency injection eliminate much of the code you would otherwise have to write. And it all happens within the browser, making it an ideal partner with any server technology.

    AngularJS is what HTML would have been, had it been designed for applications. HTML is a great declarative language for static documents. It does not contain much in the way of creating applications, and as a result building web applications is an exercise in what do I have to do to trick the browser into doing what I want?

    The impedance mismatch between dynamic applications and static documents is often solved with:

    • a library - a collection of functions which are useful when writing web apps. Your code is in charge and it calls into the library when it sees fit. E.g., jQuery.
    • frameworks - a particular implementation of a web application, where your code fills in the details. The framework is in charge and it calls into your code when it needs something app specific. E.g., durandal, ember, etc.
    AngularJS takes another approach. It attempts to minimize the impedance mismatch between document centric HTML and what an application needs by creating new HTML constructs. AngularJS teaches the browser new syntax through a construct we call directives. Examples include:

    • Data binding, as in {{}}.
    • DOM control structures for repeating, showing and hiding DOM fragments.
    • Support for forms and form validation.
    • Attaching new behavior to DOM elements, such as DOM event handling.
    • Grouping of HTML into reusable components.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice