Skip to main content

Posts

Showing posts from January, 2018

Let's Start ng5

Angular🤔 one of the most growing framework to develop client applications. Angular is a framework for building client applications in HTML,CSS, JavaScript/Typescript. Why ng?🤔 We can use plain .js or jQuery but as our application gets more complex, javascript or jquery code is hard to maintain and hence we need a way to properly structure our application for these there are javascript patterns out there, like Revealing module pattern or prototype pattern but these patterns are hard to understand and applications developed using .js or jquery are hard to test. Here angular comes in picture to make client application development easier. Benefits🤔 👉Angular gives our application a clean structure (loosely coupled) i.e. easy to understand and indeed easy to maintain. 👉 In angular most of the code we can reuse. Specially when dealing with user's navigation and browser history ( how don't worry we can see it in upcoming articals) 👉Angular makes our applications more te...