How to speed up ASP.NET MVC view rendering process?
It can be very disappointing if you later figure out that your application is serving requests very slow when deployed in your production environment. There can be various reasons that can...
...on a journey to become an outlier software engineer!
It can be very disappointing if you later figure out that your application is serving requests very slow when deployed in your production environment. There can be various reasons that can...
When a new ASP.NET MVC project is created using the default project templates in Visual Studio, all the work required for bundling & minification is already available. But if you...
One of technique to compose Angular Components is to write child or grand-child component(s) nested under a top-level component using the new Component Router. This is useful when you have...
AngularJS version 1.5 introduced Components that is very useful and provides the best of both controllers and directives. In this post, I’ll tell you how to use AngularJS Component Router...
There is a restriction named the same-origin policy that all the browsers have that prevents a web page from making AJAX requests to other domain for security reasons. As this...
If you are after a component-based application structure, AngularJS has a special kind of directive called Components that uses a simpler configuration and has some defaults. In this post, I’ll...
Nowadays, end-users like responsive applications and there are times when certain type of applications need to support real-time updates if required. In this post, I’ll tell you how to write...
Nowadays, end-users like responsive applications and there are times when certain type of applications need to support real-time updates if required. In this post, I’ll tell you how to write...
There are many parts in AngularJS framework that developers need to understand properly in order to make most of the framework to write well crafted web apps. In this post,...
AngularJS framework has many powerful features, one of them is Controllers. In this post, I’ll tell you how to write AngularJS Controller using TypeScript. A Controller is used to augment the Angular...