Saturday, 23 April 2016

What is the minimum requirement to use AngularJS ?


M I N I M U M   R E Q U I R E M E N T S


  • Angular JS : angular.min.js  (http://angularjs.org)


  • Inside HTML, AngularJS and bootstrap CSS is used, like : 
    <html>
      <head>
        <link rel="stylesheet" type="text/css" href="bootstrap.min.css" />
        <script type="text/javascript" src="angular.min.js"> </script>
      </head>
      <body>
              ...
      </body>
    </html>

    You can keep js file inside your project or you can use the CDN link (CDN link can be found on angularjs.org)


  • Twitter Bootsrap : bootstrap.min.css  (http://getbootstrap.com)
  • No comments:

    Post a Comment

    Note: only a member of this blog may post a comment.