top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between Kris Kowal's Q and $q?

0 votes
292 views
What is the difference between Kris Kowal's Q and $q?
posted Nov 11, 2017 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

There are two main differences between Kris Kowal's Q and $q:
1. $q is integrated with the $rootScope.Scope Scope model observation mechanism in angular, which means
faster propagation of resolution or rejection into your models and avoiding unnecessary browser repaints,
which would result in flickering UI.
2. Q has many more features than $q, but that comes at a cost of bytes. $q is tiny, but contains all the
important functionality needed for common async tasks.

answer Nov 11, 2017 by Shivaranjini
...