Skip to content

Simple Instagram Nodejs app that tells you who have unfollowed you recently.

Notifications You must be signed in to change notification settings

ahmamedhat/Detect-IG-Unfollower

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Who Unfollowed Me on Instagram

This is a nodejs app that detects who has unfollowed you.

Installation

After cloning the app install the dependencies.

Using npm

  npm install

Using yarn

  yarn

Usage/Examples

Replace the 'IG-followers.csv' and 'IG-following.csv' files with your instagram data.

var oldFollowingStream = fs.createReadStream("./data/old/IG-following.csv");
var oldFollowersStream = fs.createReadStream("./data/old/IG-followers.csv");

var newFollowingStream = fs.createReadStream("./data/new/IG-following.csv");
var newFollowersStream = fs.createReadStream("./data/new/IG-followers.csv");

When you first run the app there's no old followers data to test on so add your followers and following csv files to both old and new folders.

Whenever you notice that your unfollowers number decreases update the two files inside the 'new' folder with the new csv files, consider naming the new files to 'IG-following.csv' and 'IG-followers.csv' to work.

Then run in terminal using

  npm start

OR

  yarn start

About

Simple Instagram Nodejs app that tells you who have unfollowed you recently.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published