{"id":19945871,"url":"https://github.com/blackiq/fortnite-stats-bot","last_synced_at":"2026-05-13T00:32:09.521Z","repository":{"id":229324449,"uuid":"759514625","full_name":"BlackIQ/fortnite-stats-bot","owner":"BlackIQ","description":"Fortnite Stats Bot. The api is https://github.com/BlackIQ/fortnite-stats-api","archived":false,"fork":false,"pushed_at":"2024-10-02T15:04:43.000Z","size":79,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-29T17:26:41.030Z","etag":null,"topics":["bot","fortnite","nodejs","telegram"],"latest_commit_sha":null,"homepage":"https://t.me/stats_br_bot","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/BlackIQ.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},"funding":{"custom":["https://paypal.me/meBlackIQ","https://www.patreon.com/BlackIQ","https://idpay.ir/amirhosseinmohammadi"]}},"created_at":"2024-02-18T19:48:21.000Z","updated_at":"2024-10-02T15:04:47.000Z","dependencies_parsed_at":"2024-03-23T15:33:47.077Z","dependency_job_id":"cbe89d3f-c1ff-4854-b790-e95dda8113dd","html_url":"https://github.com/BlackIQ/fortnite-stats-bot","commit_stats":null,"previous_names":["blackiq/fortnite-stats-bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BlackIQ/fortnite-stats-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackIQ%2Ffortnite-stats-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackIQ%2Ffortnite-stats-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackIQ%2Ffortnite-stats-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackIQ%2Ffortnite-stats-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BlackIQ","download_url":"https://codeload.github.com/BlackIQ/fortnite-stats-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackIQ%2Ffortnite-stats-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32963160,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T23:30:32.555Z","status":"ssl_error","status_checked_at":"2026-05-12T23:30:18.191Z","response_time":102,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bot","fortnite","nodejs","telegram"],"created_at":"2024-11-13T00:27:16.391Z","updated_at":"2026-05-13T00:32:09.398Z","avatar_url":"https://github.com/BlackIQ.png","language":"JavaScript","funding_links":["https://paypal.me/meBlackIQ","https://www.patreon.com/BlackIQ","https://idpay.ir/amirhosseinmohammadi"],"categories":[],"sub_categories":[],"readme":"# Fortnite Stats Bot\n\nGet your **Battle Royale** stats!\n\n## How to contribute\n\nTo use this API in your machine, you need to follow some steps:\n\n1. Clone repository\n2. Install packages\n3. Add your variables in `.env`\n4. Run\n\n### Clone repository\n\nSo, first thing first, create your app direactory or anywhere:\n\n```bash\n$ mkdir -p /apps/fortnite\n```\n\n\u003e The `-p` makes directory even the parent is not exists.\n\nThen go inside it:\n\n```bash\n$ cd /apps/fortnite\n```\n\nTo clone repo, just run the following command:\n\n```bash\n$ git clone https://github.com/BlackIQ/fortnite-stats-bot\n```\n\nIf you want to clone it in your own name, add your name as argument:\n\n```bash\n$ git clone https://github.com/BlackIQ/fortnite-stats-bot bot\n```\n\n### Install packages\n\nOk, now go inside project:\n\n```bash\n$ cd  /apps/fortnite/bot\n```\n\nThen install dependencies:\n\n```bash\n$ npm i\n```\n\n### Add your variables in `.env`\n\nTo start app, you need to add app data, backend url, telegram bot token and proxy.\n\nNow copy `.env.example` to `.env`:\n\n```bash\n$ cp .env.example .env\n```\n\nThen let's put our values.\n\n#### Proxy\n\nIf you are living in Iran or anywhere that want to pass your bot traffic bia a proxy, you need to add the proxy socks5 connection string to `PROXY_SOCKS5` like this:\n\n```bash\nPROXY_SOCKS5=socks5://localhost:1091\n```\n\n#### App\n\nApp just have a variable. This variable is just to check app is production or development. If this variable be **production** it won't use proxy. But if you want to use proxy, add **development**.\n\n```bash\nAPP_ENVIRONMENT\n```\n\n#### Telegram\n\nYour bot have a token gave by Telegram. Just this.\n\n```bash\nBOT_TOKEN\n```\n\n#### Backend\n\nLast thing, just add the backend url. I mean [this project](https://github.com/BlackIQ/fortnite-stats-api).\n\n```bash\nAPI_URL\n```\n\n### Run\n\nNow your configuration is ready! Let's run it!\n\n```bash\n$ npm test\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackiq%2Ffortnite-stats-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackiq%2Ffortnite-stats-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackiq%2Ffortnite-stats-bot/lists"}