Automatically favorite tweets that contain certain keywords
First install the dependencies.
npm install
Copy the settings file settings.example.js and create a settings.js in the same location. DO NOT COMMIT THIS TO GITHUB.
exports = {
twitter: {
consumer_key: "YOUR_CONSUMER_KEY",
consumer_secret: "YOUR_CONSUMER_SECRET",
access_token: "YOUR_ACCESS_TOKEN",
access_token_secret: "YOUR_ACCESS_TOKEN_SECRET"
},
keywords: [],
delay: 32
};Run the favbot
node favbot
Go to https://apps.twitter.com and create an application. Make sure you select Read Write permissions. Generate access tokens and API keys and place those in your settings.js file.
Will compile coffeescript files and will watch for changes to the code base.
gulp