Angular Social Count is a directive that just counts shares, likes, ...etc on social networks.
http://bahaaldine.github.io/angular-social-count
Install depedencies using bower:
bower install angular-social-count
Add js libraries to your application:
...
<script src="bower_components/angular-social-count/dist/angular-social-count.js"></script>
...
Add ngSocialCount module to you application
...
angular
.module('myAwesomeApp', [
...
'ngSocialCount',
...
])
...
...
<ng-fb-like-count class="counter" url="{{url}}"></ng-fb-like-count>
<ng-fb-share-count class="counter" url="{{url}}"></ng-fb-share-count>
<ng-fb-comment-count class="counter" url="{{url}}"></ng-fb-comment-count>
...
...
<ng-tw-share-count class="counter" url="{{url}}"></ng-fb-share-count>
...
...
<ng-pn-share-count class="counter" url="{{url}}"></ng-fb-share-count>
...
...
<ng-ln-share-count class="counter" url="{{url}}"></ng-fb-share-count>
...