Category: Angular

Recommended Books to Learn Angular 2

There are plenty of resources and books available online to learn Angular 2 and TypeScript. Apart from the online resources Angular 2 eBooks and Physical copy of the books too add to a greater learning experience. Here are some of the books which are useful in learning Angular 2 and TypeScript. Recommended Books for Learning Angular 2 and TypeScript Angular 2 Development with TypeScript Angular…

How to Include AngularJS Library in Web page via CDN ?

If you want to use AngularJS library in a web page , we just have to point your script tag to the necessary AngularJS script file . You can either download the AngularJS script file to your server and use it or else you can use the CDN(Content Delivery Network). In this article , we will look in to the inclusion of the AngularJS in…

Angular error NG8002: Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’.

When working with Angular Application, you may encounter the error code NG8002 which is an attribute unknown. An example of the error is NG8002: Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’. What is Wrong? One of the main reasons for this error is that the attribute or property could not be resolved during the compilation of the angular project. For…

Downloading and Installing AngularJS via CDN

If you want to use AngularJS in your webpage , you just need to point the <script> tag in the page to the AngularJS file. You can either download the AngularJS script file to your project and use it from there or use CDN (Content Delivery Network). How to download and install AngularJS via CDN ? You just need to add the below script within…