Hey everyone! In around 10 days from today, I will be speaking at ng-Srilanka, the first ever Angular conference of SriLanka. I will be speaking on the topic “Creating Libraries in Angular” on 14th September, 2019, along with some other great speakers. The purpose of this blog post is to make sure you are well-versed… Continue reading ng-Srilanka: Good to knows before attending my talk
Author: unravelweb.dev
Build a Web page with WEB2PY
Fond of Python? Thinking how to use it for web development? I come from a similar background. I have always had a thing for Python. It just attracts me a lot! Getting into web development right after my graduation took me away from Python but I though why not do the same thing, i.e., web… Continue reading Build a Web page with WEB2PY
Custom validation for your reactive forms?
When working with forms in Angular, we are provided with a choice. The choice is similar to the one between choosing tea or coffee. This choice is about choosing which types of forms we should use as per the requirement of our solution. And the two options that we get are: Template-driven forms Model-driven forms… Continue reading Custom validation for your reactive forms?
Lazy Loading in Angular 8
We all know lazy loading is one of the most useful concepts of Angular Routing, and for those of us who have been working with Angular, we know how it brings down the size of large files. This is done by lazily loading the files that are required occasionally. To start with lazy loading by… Continue reading Lazy Loading in Angular 8
A book on Angular Routing?
When I started my journey of learning Angular, the concept that captured my interest totally was the routing and navigation techniques in the framework. First of all, my basic understanding of web apps was that there are multiple pages and clicking on one element on a page would link to the next page having a… Continue reading A book on Angular Routing?
Angular Library with ng-packagr
NOTE: The article is relevant to the earlier versions of Angular and with the version 7 and above, we can create a library in Angular using the command ng generate library <library-name> . For more on this, refer to the documentation here: https://next.angular.io/guide/creating-libraries When you have a small application with three or more components, and they… Continue reading Angular Library with ng-packagr
CSharp Corner Conference 2019
In the month of April 2019, I got the opportunity to speak at the annual conference of CSharp Corner. CSharp Corner is the worldwide community of software professionals and developers located in the USA. The conference included talks on diverse technologies such as .NET, BlockChain, Docker, Angular et cet era. With Angular being one of the… Continue reading CSharp Corner Conference 2019
IWD 2019 - GDG Makurdi
In the March of 2019, Pius contacted me to share my knowledge about the basic concepts of Angular with the audience of Makurdi, Nigeria. It was organised as a celebration of International Women’s Day 2019. On the 31st of March 2019, I joined the audience in Makurdi via a Hangout session and discussed the topics… Continue reading IWD 2019 - GDG Makurdi
Understanding Component Communication using @Input()
CRUD with Angular
In almost any application that we work with, the first important thing to do is to deal with data, loads and loads of data. And this data which resides on the server is dealt with by the use of HTTP operations. We perform HTTP GET and POST operations to work with that data. Now, in… Continue reading CRUD with Angular