A simple command line tool to unfollow inactive accounts.
npm install unfollow-inactive``javascript
const unIn = require('unfollow-inactive');
//get your keys at https://apps.twitter.com/
const authObj = {
consumer_key: '
consumer_secret: '
access_token_key: '
access_token_secret: '
}
unIn(authObj);
``