Skip to main content

Posts

Showing posts from 2020

Top Programming Blogs to Improve Your Skills

Coding Horror Coding Horror was started in 2004 by Jeff Atwood, an experienced software engineer from Berkeley, CA. Jeff’s experience, as well as his awareness of the human side of technology, makes his website one of the best programming blogs for anyone interested in web development, software engineering and computers in general. →  https://blog.codinghorror.com/ David Walsh This popular coding blog focuses on modern libraries, programming tutorials and shortcuts for programming in JavaScript. David Walsh and his guest bloggers provide daily posts and commentary to help you learn how to code quicker and more efficiently. On his blog, you’ll find everything from how to build a video player using  React  to using Node.js and mastering advanced HTML/CSS techniques by subscribing to this leading programming blog. →  https://davidwalsh.name/ A List Apart Several bloggers contribute to this code-based blog to create a highly informative and entertaining stream of posts. F

Angular Architecture

Angular Architecture is divided into different parts like Component, Template, Directive, Service, and Module. Before you start to develop your application, you should have knowledge about the purpose of each part of the application. So that you can make your application smoother and faster. Below is the figure of angular architecture. Angular Architecture In this chapter, we will see each term in detail. Module Angular Applications are modular and Angular has its own modularity system called NgModule. Every Angular application has at least one class with a @NgModule decorator, it is the root module, conventionally named as AppModule. To use any component into an application you need to declare it into the related module. Angular Module is class with a @NgModule decorator. Code Snippet of Angular Module The most important properties of @NgModule are : declarations:  declaration property contains a li