{"id":32119657,"url":"https://github.com/irandeno/tea","last_synced_at":"2026-02-18T22:01:04.606Z","repository":{"id":62422158,"uuid":"371885045","full_name":"irandeno/tea","owner":"irandeno","description":"Modern and Modular telegram framework for deno","archived":false,"fork":false,"pushed_at":"2021-08-07T12:33:59.000Z","size":95,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-19T21:49:26.742Z","etag":null,"topics":["deno","telegram","typescript"],"latest_commit_sha":null,"homepage":"","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/irandeno.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}},"created_at":"2021-05-29T05:06:28.000Z","updated_at":"2023-07-26T07:36:45.000Z","dependencies_parsed_at":"2022-11-01T17:45:45.412Z","dependency_job_id":null,"html_url":"https://github.com/irandeno/tea","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/irandeno/tea","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irandeno%2Ftea","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irandeno%2Ftea/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irandeno%2Ftea/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irandeno%2Ftea/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/irandeno","download_url":"https://codeload.github.com/irandeno/tea/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/irandeno%2Ftea/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29596328,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T20:59:56.587Z","status":"ssl_error","status_checked_at":"2026-02-18T20:58:41.434Z","response_time":162,"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":["deno","telegram","typescript"],"created_at":"2025-10-20T18:03:48.332Z","updated_at":"2026-02-18T22:01:04.587Z","avatar_url":"https://github.com/irandeno.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tea\n\n![tea logo](https://i.ibb.co/s6W8MwM/tea-small.png)\n\nA telegram framework with built-in dynamic module system and dependency\ninjection.\n\n\u003e highly inspired by angular and nest.js\n\n## Getting Started\n\n```typescript\n// main.ts\nimport { TeaFactory } from \"https://deno.land/x/tea@v0.3.1/packages/core/mod.ts\";\nimport { BotModule } from \"./bot.module.ts\";\n\nfunction bootstrap() {\n  const bot = TeaFactory.create(BotModule, \"BOT_TOKEN\");\n  bot.start();\n}\n\nbootstrap();\n```\n\n```typescript\n// bot.module.ts\nimport { Module } from \"https://deno.land/x/tea@v0.3.1/packages/common/mod.ts\";\nimport { GreetController } from \"./greet.controller.ts\";\n\n@Module({\n  controllers: [GreetController],\n})\nexport class BotModule {}\n```\n\n```typescript\n// greet.controller.ts\nimport { Controller, Hears, Param, Start } from \"../../packages/common/mod.ts\";\n\n@Controller()\nexport class GreetController {\n  @Start()\n  start() {\n    return \"🥳 welcome to the bot buddy.\\n can you tell me your name and age ?\";\n  }\n\n  @Hears(\"{age:number}\")\n  getAge() {\n    return \"🤖 oh, I am less than a year old too\";\n  }\n\n  @Hears(\"{name:string}\")\n  getName(@Param(\"name\") name: string) {\n    return `💁🏻‍♂️ Hello again ${name}.`;\n  }\n}\n```\n\n## Execution\n\n```shell\ndeno run --allow-net=api.telegram.org --allow-env=DEBUG,DENO_ENV -c tsconfig.json --no-check main.ts\n```\n\n\u003e p.s1: `--no-check` is temporary until the adapter typing problem is resolved.\n\n\u003e p.s2: `tsconfig.json` file content can be copied from\n\u003e [this file](https://github.com/irandeno/tea/blob/main/tsconfig.json).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Firandeno%2Ftea","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Firandeno%2Ftea","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Firandeno%2Ftea/lists"}