Skip to main content

Posts

Showing posts with the label What is Angular?

What Is Angular 4 or 5 or 6 or 7 or 8?

Angular is the most popular web development framework for developing mobile apps as well as desktop applications. The angular framework is also utilized in the cross-platform mobile development called IONIC and so it is not limited to web apps only. Angular is an open source framework written and maintained by the angular team at Google and the Father of Angular is Misko Hevery . Misko Hevery - Agile Coach at Google, Attended Santa Clara University and Lives in Saratoga, CA. ü   Stayed Informed   - Angular 2 vs. Angular 1  | Angular 4 vs. Angular 2 | Angular 5 vs. Angular 4 |  Angular 6 vs Angular 5  |   Angular 8 vs Angular 7 Angular is written in TypeScript and so it comes with all the capabilities that typescript offers. You don’t worry about the TypeScript versions. The compiler manages to the versioning related problems and Angular team working with Traceur compiler team to provide the support to build some extensi...

What Is Karma? Why Use Karma In Angular?

The Karma test runner and it use to writing and running the unit tests while developing the application. It can be a compulsory part of the project's development. ü   Stayed Informed - What Is Jasmine? Why Use Jasmine In Angular? The List of Karma Dependencies - 1.      karma 2.      karma-chrome-launcher 3.      karma-cli 4.      karma-coverage-istanbul-reporte 5.      karma-jasmine 6.      karma-jasmine-html-reporter npm install -- save - dev < all - of - the - above-dependencies > You should Install the Karma CLI globally - npm install - g karma - cli The package.json contents should now have the following -   "devDependencies" : {     "@angular/cli" : "1.5.0" ,     "@angular/compiler-cli" : "^5.0.0" ,     "@angular/language-service" : "^5.0.0" ,  ...