Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
instagram-analyzer
Advanced tools
A node.js lib to get recent photos, with all likes and comments, related to a tag.
A node.js lib to get recent photos, with all likes and comments, related to a tag.
npm install instagram-analyzer
Then you can use it like this:
var when = require('when');
var Instagram = require('instagram-analyzer');
var insta = new Instagram({
instagram: {
clientId: 'your client id',
clientSecret: 'your client secret'
}
});
when(insta.getRecentMediasForTagFull('sorenso', 'sorenso', 2))
.done(function (mediaList) {
for (var i = 0; i < mediaList.length; i++) {
console.log('#' + i + ': ', mediaList[i].caption.text);
console.log(' ', 'Likes (count/elements):', mediaList[i].likes.count, mediaList[i].likes.data.length);
console.log(' ', 'Comments (count/elements):', mediaList[i].comments.count, mediaList[i].comments.data.length);
}
}, console.error);
Copy config-dist.js
to config.js
and insert your Instagram clientId and clientSecret.
cp ./config/config-dist.js ./config/config.js
vim ./config/config.js
Run the app with the tag you want to filter on.
node app/app.js -t sorenso -l 10
You can also filter by tag and user
node app/app.js -t sorenso -u sorenso -l 10
FAQs
A node.js lib to get recent photos, with all likes and comments, related to a tag.
We found that instagram-analyzer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.