{"id":41783095,"url":"https://github.com/timnikolsky/tgkit","last_synced_at":"2026-01-25T04:06:23.322Z","repository":{"id":57749478,"uuid":"467977899","full_name":"timnikolsky/tgkit","owner":"timnikolsky","description":"A developer-friendly wrapper for Telegram Bot API","archived":false,"fork":false,"pushed_at":"2026-01-05T06:42:06.000Z","size":521,"stargazers_count":4,"open_issues_count":9,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-15T07:50:13.834Z","etag":null,"topics":["bots","nodejs","telegram","telegram-bot-api","tgkit","typescript"],"latest_commit_sha":null,"homepage":"https://tgkit.vercel.app","language":"TypeScript","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/timnikolsky.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-09T15:11:49.000Z","updated_at":"2026-01-05T06:35:01.000Z","dependencies_parsed_at":"2024-08-09T14:11:12.232Z","dependency_job_id":"56ffae96-9ca2-49da-91c9-d70f3236921e","html_url":"https://github.com/timnikolsky/tgkit","commit_stats":null,"previous_names":["sadnesszephyr/tgkit","timnikolsky/tgkit","sadnesszephyr/telescript"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/timnikolsky/tgkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timnikolsky%2Ftgkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timnikolsky%2Ftgkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timnikolsky%2Ftgkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timnikolsky%2Ftgkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timnikolsky","download_url":"https://codeload.github.com/timnikolsky/tgkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timnikolsky%2Ftgkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28742983,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T02:46:29.005Z","status":"ssl_error","status_checked_at":"2026-01-25T02:44:29.968Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["bots","nodejs","telegram","telegram-bot-api","tgkit","typescript"],"created_at":"2026-01-25T04:06:22.707Z","updated_at":"2026-01-25T04:06:23.313Z","avatar_url":"https://github.com/timnikolsky.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://i.imgur.com/Y7tzNEI.png\" alt=\"TgKit Logo\" width=\"128\" height=\"128\"\u003e\n    \u003ch1 align=\"center\"\u003eTgKit\u003c/h1\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca aria-label=\"License\" href=\"https://github.com/sadnesszephyr/tgkit/blob/main/license\"\u003e\n    \u003cimg\n\t\talt=\"License\"\n\t\tsrc=\"https://img.shields.io/github/license/sadnesszephyr/tgkit?style=for-the-badge\u0026labelColor=1A1A1A\"\n\t\u003e\n  \u003c/a\u003e\n  \u003ca aria-label=\"Bot API version\"\u003e\n    \u003cimg\n\t\talt=\"Telegram Bot API version\"\n\t\tsrc=\"https://img.shields.io/badge/Bot%20API-7.6-1d98dc?labelColor=%231A1A1A\u0026logo=telegram\u0026logoColor=%23FFF\u0026style=for-the-badge\"\n\t\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## About\n\n\u003e [!WARNING]  \n\u003e **This library is under development!** It doesn't yet cover Telegram Bot API 100% and may contain bugs. Library API may change at any time. Use it in production at your own risk.  \n\u003e **None of the code is generated**. Every type and structure is hand-written, hence there can be some mistakes. Please open an issue if you find any!\n\nTgKit is library for interacting with [Telegram Bot API](https://core.telegram.org/bots/api)\n\n### Features\n\n-   Lightweight\n-   Object-oriented, has predictable abstractions and [Typescript](https://typescriptlang.org/) type defentitions included\n\n## Example\n\n```ts\nimport { Client } from 'tgkit';\n\nconst client = new Client({\n\t// Create bot and get token via @botfather\n\ttoken: '0123456789:PUtY0uR0WNT37egR4m8oTtOk3NHer3-tMnK',\n});\n\nclient.on('message', async (message) =\u003e {\n\tif (message.text.startsWith('/start')) {\n\t\tawait message.chat.sendMessage(\"Hello World! I'm a brand new TgKit bot\");\n\t\tawait message.chat.sendMessage('✌️');\n\t}\n});\n\nclient.polling.start();\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimnikolsky%2Ftgkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimnikolsky%2Ftgkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimnikolsky%2Ftgkit/lists"}