{"id":24995651,"url":"https://github.com/kwaytv/hono-steamer-api","last_synced_at":"2026-04-30T12:34:05.965Z","repository":{"id":273644886,"uuid":"920375659","full_name":"kWAYTV/hono-steamer-api","owner":"kWAYTV","description":"⚡ High-performance Steam profile resolver API with MySQL-powered smart caching system | Built with Hono \u0026 TypeScript 🚀","archived":false,"fork":false,"pushed_at":"2025-01-27T03:01:45.000Z","size":166,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-29T14:44:23.268Z","etag":null,"topics":["hono","openapi","steam-api","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/kWAYTV.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}},"created_at":"2025-01-22T03:21:18.000Z","updated_at":"2025-01-27T03:01:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b288880-4faa-4566-b546-5962699968f8","html_url":"https://github.com/kWAYTV/hono-steamer-api","commit_stats":null,"previous_names":["kwaytv/hono-steamer-api"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/kWAYTV/hono-steamer-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kWAYTV%2Fhono-steamer-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kWAYTV%2Fhono-steamer-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kWAYTV%2Fhono-steamer-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kWAYTV%2Fhono-steamer-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kWAYTV","download_url":"https://codeload.github.com/kWAYTV/hono-steamer-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kWAYTV%2Fhono-steamer-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32465009,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["hono","openapi","steam-api","typescript"],"created_at":"2025-02-04T15:39:39.462Z","updated_at":"2026-04-30T12:34:05.947Z","avatar_url":"https://github.com/kWAYTV.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hono Steamer API\n\nHigh-performance Steam profile resolver and caching API built with modern TypeScript stack. Optimized for fast lookups with smart caching.\n\n## Core Features\n\n- ⚡ Steam ID and Custom URL resolution with caching\n- 🔒 Type-safe API with OpenAPI specification\n- 📝 Structured logging and error handling\n- 🛠️ Modern TypeScript stack\n- 🚀 Docker-ready with health checks\n\n## Tech Stack\n\n- **Framework**: [Hono](https://hono.dev/) with [@hono/zod-openapi](https://github.com/honojs/middleware)\n- **Database**: MySQL with [Drizzle ORM](https://orm.drizzle.team/)\n- **Documentation**: [Scalar](https://guides.scalar.com/scalar/introduction)\n- **Validation**: [Zod](https://zod.dev/)\n- **Logging**: [Pino](https://getpino.io/) with [hono-pino](https://github.com/maou-shonen/hono-pino)\n\n## Quick Start\n\n1. Clone and install:\n\n```sh\ngit clone https://github.com/kWAYTV/hono-steamer-api.git\ncd hono-steamer-api\npnpm install\n```\n\n2. Configure environment:\n\n```sh\ncp .env.example .env\n# Edit .env with your settings\n```\n\n3. Setup database:\n\n```sh\npnpm gp\n```\n\n4. Start development server:\n\n```sh\npnpm dev\n```\n\n## API Endpoints\n\n| Method | Path          | Description                     |\n| ------ | ------------- | ------------------------------- |\n| GET    | /resolve/{id} | Resolve and cache Steam profile |\n| POST   | /refresh/{id} | Force refresh a Steam profile   |\n| GET    | /doc          | OpenAPI Specification           |\n| GET    | /reference    | API Documentation               |\n\n## Environment Variables\n\n| Variable     | Description               | Default              |\n| ------------ | ------------------------- | -------------------- |\n| NODE_ENV     | Environment mode          | development          |\n| PORT         | Server port               | 9999                 |\n| LOG_LEVEL    | Logging level             | debug                |\n| MYSQL\\_\\*    | MySQL connection settings | -                    |\n| BEARER_TOKEN | API authentication token  | -                    |\n| BASE_URL     | CORS/CSRF origin URL      | Environment specific |\n\n## Development\n\n```sh\npnpm dev     # Start development server\npnpm test    # Run tests\npnpm lint    # Lint code\npnpm build   # Build for production\n```\n\n## Docker Deployment\n\n```sh\ndocker compose up -d\n```\n\n## Acknowledgments\n\nThis project builds upon several excellent open-source works:\n\n- [hono-open-api-starter](https://github.com/w3cj/hono-open-api-starter) by [@w3cj](https://github.com/w3cj) - Foundation for type-safe Hono APIs\n- [steamid-resolver](https://github.com/3urobeat/node-steamid-resolver) by [@3urobeat](https://github.com/3urobeat) - Core Steam ID resolution functionality\n\n## License\n\n[MIT](LICENSE) © [kWAY](https://github.com/kWAYTV)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkwaytv%2Fhono-steamer-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkwaytv%2Fhono-steamer-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkwaytv%2Fhono-steamer-api/lists"}