{"id":29430799,"url":"https://github.com/waikebber/discord-tracker-bot","last_synced_at":"2026-05-15T08:38:41.935Z","repository":{"id":300097602,"uuid":"1003975593","full_name":"Waikebber/Discord-Tracker-Bot","owner":"Waikebber","description":"A Simple Discord Notification Bot","archived":false,"fork":false,"pushed_at":"2025-07-01T23:02:38.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-12T18:27:50.740Z","etag":null,"topics":["discord-bot","discord-js","reddit","reddit-api","threads","threads-api"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Waikebber.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-17T23:47:10.000Z","updated_at":"2025-07-01T23:13:34.000Z","dependencies_parsed_at":"2025-06-19T21:45:33.608Z","dependency_job_id":null,"html_url":"https://github.com/Waikebber/Discord-Tracker-Bot","commit_stats":null,"previous_names":["waikebber/discord-tracker-bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Waikebber/Discord-Tracker-Bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Waikebber%2FDiscord-Tracker-Bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Waikebber%2FDiscord-Tracker-Bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Waikebber%2FDiscord-Tracker-Bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Waikebber%2FDiscord-Tracker-Bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Waikebber","download_url":"https://codeload.github.com/Waikebber/Discord-Tracker-Bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Waikebber%2FDiscord-Tracker-Bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279004055,"owners_count":26083667,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["discord-bot","discord-js","reddit","reddit-api","threads","threads-api"],"created_at":"2025-07-12T18:02:01.325Z","updated_at":"2025-10-10T13:34:58.248Z","avatar_url":"https://github.com/Waikebber.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Discord-Tracker-Bot\n\nA Discord bot that helps post messages in your Discord server by monitoring media posts and automatically sharing them in designated Discord channels.\n\n## Features\n\n- Monitor specific media and users and automatically post their updates to Discord\n- Filter posts based on keywords\n- Exclude posts containing specific words (unless they match keywords)\n- Support for multiple channel configurations\n- Real-time updates from media to Discord\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/Waikebber/Discord-Tracker-Bot.git\ncd Discord-Tracker-Bot\n```\n\n2. Install the required dependencies:\n```bash\nnpm install\n```\n\n3. Create a `.env` file in the root directory with your Discord bot and Meta Threads token:\n```\nDISCORD_TOKEN=\"your_discord_bot_token_here\"\nTHREADS_TOKEN=\"your_threads_token_here\"\n```\n\n4. Configure your bot settings in `app/configs/config.json`:\n```json\n{\n  \"enabledApis\": [\"reddit\"], #whitelist apis\n  \"watches\": [\n    {\n      \"api\": \"reddit\",\n      \"discord-text-channel\": \"Your Discord Channel ID\",\n      \"subreddits\": [\"SubredditName\"],\n      \"users\": [\"UsersToTrackInSubreddit\"],\n      \"keywords\": [\"TrackThis\", \"AndThat\"],\n      \"excluded\": [\"ButNotThis\"]\n    }\n  ]\n}\n```\n\nYou can add multiple configurations by adding more objects to the JSON array.\n\n## Usage\n\n1. Start the bot:\n```bash\nnpm start\n```\n\n2. The bot will automatically:\n   - Monitor the specified Threads users\n   - Filter posts based on your keywords\n   - Exclude posts containing excluded words (unless they match keywords)\n   - Post matching content to the specified Discord channel\n\n## Test\nTest whether it's extracting the right posts using your `config.json` and this script:\n```\nnpm run start:test\n```\n\n## Configuration\n\n### Channel Configuration\n- `discord-text-channel`: The ID of the Discord channel where posts will be shared\n- `user_posts`: List of Threads usernames to monitor\n- `keywords`: List of keywords that posts must contain to be shared\n- `excluded`: List of words that will cause a post to be ignored (unless it contains a keyword)\n\n### .env and config.jsom\nThis is what your `.env` may look like:\n```\nDISCORD_TOKEN=\"YOUR_KEY_HERE\"\nTHREADS_TOKEN=\"YOUR_KEY_HERE\"\n\nSERVER1_POKEMON_CHANNEL_ID=\"12344567890\"\n\nREDDIT_SECRET=\"\"\nREDDIT_CLIENT_ID=\"\"\nREDDIT_USERNAME=\"\"\nREDDIT_PASSWORD=\"\"\n```\n\nAnd here's what the `app/configs/config.json` file may look like:\n```json\n{\n  \"enabledApis\": [\"reddit\"], \n  \"watches\": [\n    {\n      \"api\": \"reddit\",\n      \"discord-text-channel\": \"SERVER1_POKEMON_CHANNEL_ID\",\n      \"subreddits\": [\"PokemonRestocks\"],\n      \"users\": [\"TrackaLackerBot\"],\n      \"keywords\": [\"MSRP\", \"Price Drop\", \"Below MSRP\"],\n      \"excluded\": []\n    }\n  ]\n}\n\n```\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Utilized Documentation:\n### Meta Threads API\n- [Retrieve and Discover Posts](https://developers.facebook.com/docs/threads/retrieve-and-discover-posts)\n- [Retrieve User Posts](https://developers.facebook.com/docs/threads/retrieve-and-discover-posts/retrieve-posts)\n\n### Reddit API\n- [Reddit API](https://www.reddit.com/dev/api/)\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaikebber%2Fdiscord-tracker-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwaikebber%2Fdiscord-tracker-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaikebber%2Fdiscord-tracker-bot/lists"}