├── LICENSE ├── Procfile ├── README.md ├── package.json └── src ├── bot.js └── config.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/js-twitter-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: node src/bot.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/js-twitter-bot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/js-twitter-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/js-twitter-bot/HEAD/src/bot.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redianmarku/js-twitter-bot/HEAD/src/config.js --------------------------------------------------------------------------------