I'm no longer actively maintaining this project. If you are interested supporting it - ping me on twitter. The only thing that I will ask you is to not change the API drastically. If you are planning on doing that - better start a brand new project.
If you want me to transfer you only the name on npm, I'd be happy to only if the project does not have any downloads on npm lately. In case it's being downloaded, there are people that depend on it and might step up and start maintaining, so I will not transfer it to you, regardless if you want to release a new major version etc.
If you have any other questions, let me know.
Thanks!
Veselin
Get social stats for given url
- Google+
Feel free to fork, add a new source and send a pull request
var social = require('socialcount');
var opts = {
facebook: true,
plus: true,
tweets: true,
};
social('http://awesome.io', opts, function(err, res) {
// facebook
res.facebook.count; // total
res.facebook.shareCount;
res.facebook.likeCount;
res.facebook.commentCount;
// tweets
res.tweet.count;
// +
res.plus.count;
});
$ npm install socialcount
The Google+ counts won't work due to SSL bug.
The MIT License (see LICENSE)