node-hashtagify
v1.0.1
Published
API to get trending and related hashtags
Downloads
28
Readme
node-hashtagify
API to get trending and related hashtags
Usage
const Hashtagify = require('node-hashtagify');
const hash = new Hashtagify();
Get related hashtags
hash.getRelated((hashtags = ['cool', 'instapic']));
/*
hashtags array can take between 1 and 3 hashtags
*/
Get trending hashtags
hash.getTrends((hashtags = ['cool', 'instapic']));
/*
hashtags array can take between 1 and 3 hashtags
*/