Last week I was working on AngularJS project which contains multiple JavaScript files (controllers, services, directives, etc…), good number of HTML partials, and some custom CSS files. This project started to grow and the number of JavaScript files and HTML partials started to increase quickly. I felt it is the right time to start minifing, […]
Building SPA using AngularJS – Part 3
This is the third part of Building SPA using AngularJS Series. The topics we’ll cover are: Building SPA using AngularJS – Part 1 Building SPA using AngularJS – Part 2 Building SPA using AngularJS – Part 3 (This Post) Update (2014-May-5) New post which covers adding GulpJS as Task Runner for our AngularJS application: AngularJS […]
Building SPA using AngularJS – Part 2
This is the second part of Building SPA using AngularJS Series. The topics we’ll cover are: Building SPA using AngularJS – Part 1 Building SPA using AngularJS – Part 2 (This Post) Building SPA using AngularJS – Part 3 Update (2014-May-5) New post which covers adding GulpJS as Task Runner for our AngularJS application: AngularJS with […]
Building SPA using AngularJS – Part 1
This is the first part of Building SPA using AngularJS Series. The topics we’ll cover are: Building SPA using AngularJS – Part 1 (This Post) Building SPA using AngularJS – Part 2 Building SPA using AngularJS – Part 3 Update (2014-May-5) New post which covers adding GulpJS as Task Runner for our AngularJS application: AngularJS with […]
Tutorial for Building SPA using AngularJS
Recently I’ve been working on and evaluating different JavaScript frameworks for the next big project I’ll be involved in, we want to build Single Page Application (SPA) while depending on a solid JavaScript framework, so I decided to get my hands dirty and try to build a demo application using one of the solid JS framework, […]
Boost UI Rendering with Client Side Templating
Previous week I was preparing for internal Tech. session for my work colleagues; It was mainly about how we can Improve UI rendering experience for heavy pages and how we can move the UI heavy lifting from the server to the client. Let the server get busy with Data retrieval only. You can download the demo application using the […]
Use jQuery to call ASP.NET Web Service the right way!
Recently I was revising an application created long time ago which uses AJAX and jQuery extensively, and I found myself doing a common mistake which many articles and forums fall into it. The mistake is Normal Serialization for service methods response then Deserializing the JSON string on the client. I will describe the mistake using the below example, then we […]