{"id":28347578,"url":"https://github.com/revunix/streamernotify","last_synced_at":"2026-05-05T10:33:34.806Z","repository":{"id":255017174,"uuid":"848279698","full_name":"revunix/StreamerNotify","owner":"revunix","description":"A bot that monitors the status of Twitch and Kick streams and sends notifications via Telegram.","archived":false,"fork":false,"pushed_at":"2025-05-26T20:52:00.000Z","size":46,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-03T07:41:05.284Z","etag":null,"topics":["docker","docker-compose","kick-api","kick-com","kickstreaming","notify","telegram","telegram-bot","twitch"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/revunix.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":"2024-08-27T13:25:36.000Z","updated_at":"2025-05-26T20:52:03.000Z","dependencies_parsed_at":"2024-08-27T14:55:44.419Z","dependency_job_id":"7fffe106-caf7-4907-9302-a6d60135bd69","html_url":"https://github.com/revunix/StreamerNotify","commit_stats":null,"previous_names":["revunix/ttv-notify","revunix/streamernotify"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/revunix/StreamerNotify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revunix%2FStreamerNotify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revunix%2FStreamerNotify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revunix%2FStreamerNotify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revunix%2FStreamerNotify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/revunix","download_url":"https://codeload.github.com/revunix/StreamerNotify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/revunix%2FStreamerNotify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32497812,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["docker","docker-compose","kick-api","kick-com","kickstreaming","notify","telegram","telegram-bot","twitch"],"created_at":"2025-05-27T17:10:22.246Z","updated_at":"2026-05-01T12:33:14.685Z","avatar_url":"https://github.com/revunix.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StreamerNotify\n\n**StreamerNotify** is a Node.js service to monitor streamers on Twitch and Kick, sending notifications via Telegram **and** Discord.  \nIdeal for running in Docker to automatically receive alerts when your favorite streamers go live!\n\n---\n\n## Features\n\n- Monitor multiple Twitch and Kick streamers in parallel\n- Notifications via Telegram (bot) and Discord (webhook)\n- Colorful, readable logs (with Chalk)\n- Built-in `/health` HTTP endpoint for service monitoring\n- Easy configuration via Docker Compose environment variables\n- Modular, easily extendable, and Docker-ready\n\n---\n\n## Example Notification\n\n```\n👤 Streamer: *roshtein*\n🎮 Currently playing: *Slots \u0026 Casino*\n👀 Viewers: *12502*\n\n🔴 [Watch on Kick](https://kick.com/roshtein)\n```\n\n---\n\n## Quickstart\n\n### 1. Clone the repository\n\n```bash\ngit clone https://github.com/revunix/StreamerNotify.git\ncd streamernotify\n```\n\n### 2. Adjust Configuration (in `docker-compose.yml`)\n\nAll configuration is managed via environment variables inside your `docker-compose.yml`.  \n\n**Example section:**\n```yaml\n    environment:\n      TELEGRAM_TOKEN: \"YOUR_TELEGRAM_TOKEN\"\n      TELEGRAM_CHATID: \"YOUR_TELEGRAM_CHAT_ID\"\n      ENABLE_TWITCH: \"true\"\n      TWITCH_CLIENT_ID: \"YOUR_TWITCH_CLIENT_ID\"\n      TWITCH_CLIENT_SECRET: \"YOUR_TWITCH_CLIENT_SECRET\"\n      TWITCH_STREAMERS: \"YOUR_TWITCH_STREAMERS,YOUR_TWITCH_STREAMERS_2\"\n      ENABLE_KICK: \"true\"\n      KICK_CLIENT_ID: \"YOUR_KICK_CLIENT_ID\"\n      KICK_CLIENT_SECRET: \"YOUR_KICK_CLIENT_SECRET\"\n      KICK_STREAMERS: \"YOUR_KICK_STREAMERS,YOUR_KICK_STREAMERS_2\"\n      ENABLE_DISCORD: \"true\"\n      DISCORD_WEBHOOK_URLS: \"YOUR_DISCORD_WEBHOOK_URL\"\n      MESSAGE_TEMPLATE: |\n        👤 Streamer: *{user_name}*\n        🎮 Currently playing: *{game_name}*\n        👀 Viewers: *{viewer_count}*\n\n        🔴 [Watch on {platform}]({user_url})\n```\n\n**Notes:**\n- Multiple chat IDs, streamer names, or webhook URLs are comma-separated.\n- The `MESSAGE_TEMPLATE` can be customized. Use `{user_name}`, `{game_name}`, `{viewer_count}`, `{platform}`, and `{user_url}` as placeholders.\n- All environment variables can be set directly in `docker-compose.yml` under the `environment` section.\n\n---\n\n### 3. Build \u0026 Run\n\n```bash\ndocker compose up -d --build\n```\n\n---\n\n### 4. Health Check\n\nThe service exposes a health endpoint for monitoring:\n\n```\nGET http://localhost:3000/health\n```\n\n---\n\n## Configuration Reference\n\n| Variable                | Description                                                      | Required        |\n|-------------------------|------------------------------------------------------------------|-----------------|\n| TELEGRAM_TOKEN          | Telegram bot token                                               | Yes (for Telegram) |\n| TELEGRAM_CHATID         | Chat ID(s) to send notifications to (comma-separated)            | Yes (for Telegram) |\n| ENABLE_TWITCH           | Enable Twitch notifications (\"true\"/\"false\")                     | Optional (default: true) |\n| TWITCH_CLIENT_ID        | Twitch API client ID                                             | Yes (for Twitch) |\n| TWITCH_CLIENT_SECRET    | Twitch API secret                                                | Yes (for Twitch) |\n| TWITCH_STREAMERS        | Twitch streamer usernames (comma-separated, case-sensitive)      | Yes (for Twitch) |\n| ENABLE_KICK             | Enable Kick notifications (\"true\"/\"false\")                       | Optional (default: true) |\n| KICK_CLIENT_ID          | Kick API client ID (*optional, depends on implementation*)       | Yes (for Kick)   |\n| KICK_CLIENT_SECRET      | Kick API secret (*optional, depends on implementation*)          | Yes (for Kick)   |\n| KICK_STREAMERS          | Kick streamer usernames (comma-separated, lowercase)             | Yes (for Kick)   |\n| ENABLE_DISCORD          | Enable Discord notifications (\"true\"/\"false\")                    | Optional (default: false) |\n| DISCORD_WEBHOOK_URLS    | Discord webhook URL(s) (comma-separated)                         | Yes (for Discord)|\n| CHECK_INTERVAL_MS       | How often to check for live status (in milliseconds)             | Optional (default: 60000) |\n| MESSAGE_TEMPLATE        | Notification message template (see above for placeholders)        | Optional        |\n\n---\n\n## Logging\n\n- Logs are colorized for readability (INFO, WARN, ERROR, etc.).\n- You can set `LOG_LEVEL` (e.g. \"info\", \"debug\") via environment variables if needed.\n\n---\n\n## Health Endpoint\n\n- The service listens on port 3000 for `/health` requests.\n- Useful for Docker healthchecks and uptime monitoring.\n\n---\n\n## Extending\n\n- To add more notification targets (e.g. Slack), see `notifier.js`.\n- To customize notifications, adjust the `MESSAGE_TEMPLATE`.\n\n---\n\n## License\n\nMIT\n\n---\n\n**Questions or suggestions?**  \nOpen an [issue](https://github.com/revunix/StreamerNotify/issues) or submit a pull request!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevunix%2Fstreamernotify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frevunix%2Fstreamernotify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frevunix%2Fstreamernotify/lists"}