{"id":35241974,"url":"https://github.com/bradcypert/steward","last_synced_at":"2026-03-17T20:04:45.512Z","repository":{"id":37051072,"uuid":"345514490","full_name":"bradcypert/steward","owner":"bradcypert","description":"A flexible server-side web framework for Dart.","archived":false,"fork":false,"pushed_at":"2025-10-31T03:22:42.000Z","size":6511,"stargazers_count":12,"open_issues_count":10,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-11T10:37:19.802Z","etag":null,"topics":["api-framework","dart","hacktoberfest","mvc-framework","router","web-framework"],"latest_commit_sha":null,"homepage":"","language":"Dart","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/bradcypert.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2021-03-08T03:04:40.000Z","updated_at":"2025-07-24T09:00:01.000Z","dependencies_parsed_at":"2022-06-25T00:40:24.853Z","dependency_job_id":"898ffe41-5d04-4e11-980e-0ba6fdecb77e","html_url":"https://github.com/bradcypert/steward","commit_stats":{"total_commits":180,"total_committers":2,"mean_commits":90.0,"dds":"0.033333333333333326","last_synced_commit":"c276a8072f3394309f2f6732eb48c6da4780a6f5"},"previous_names":["bradcypert/steward","pyrestudios/drengr"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/bradcypert/steward","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradcypert%2Fsteward","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradcypert%2Fsteward/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradcypert%2Fsteward/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradcypert%2Fsteward/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bradcypert","download_url":"https://codeload.github.com/bradcypert/steward/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradcypert%2Fsteward/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30630038,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"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":["api-framework","dart","hacktoberfest","mvc-framework","router","web-framework"],"created_at":"2025-12-30T05:12:15.534Z","updated_at":"2026-03-17T20:04:45.507Z","avatar_url":"https://github.com/bradcypert.png","language":"Dart","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"240px\" style=\"margin: 0 auto; display: block;\" src=\"https://user-images.githubusercontent.com/1455979/146241297-3b1dc419-e312-4e61-81e0-37d6dde00e21.png\" alt=\"Steward\"/\u003e\n  \n  \u003ch2 align=\"center\"\u003eA helpful framework for building server-side experiences with Dart.\u003c/h2\u003e\n\n\u003c/p\u003e\n\n-----------\n\n[![pub version](https://img.shields.io/pub/v/steward)](https://pub.dev/packages/steward)\n[![codecov](https://codecov.io/gh/PyreStudios/steward/branch/main/graph/badge.svg?token=CAK5MR60ZI)](https://codecov.io/gh/PyreStudios/steward)\n[![points](https://img.shields.io/pub/points/steward)](https://pub.dev/packages/steward)\n[![likes](https://img.shields.io/github/stars/pyrestudios/steward)](https://img.shields.io/github/stars/pyrestudios/steward)\n[![build status](https://img.shields.io/github/checks-status/pyrestudios/steward/main?label=main%20build)](https://img.shields.io/github/checks-status/pyrestudios/steward/main?label=main%20build)\n[![Documentation](https://img.shields.io/badge/Documentation-Online-blueviolet)](https://pyrestudios.github.io/steward)\n\nSteward features a command line interface for starting a new Steward project! Check it out!\n\n```\ndart pub global activate steward\n```\n\n**Note: Steward uses a config yml file that is generated by the CLI. If you choose to not use the CLI, you'll need to generate a matching config.yml file.**\n\nThe best examples for how to use Steward are captured in the test folder. Eventually, we'll refactor this out into tests and examples separately, but for now, they live together :)\n\nUsing the Steward framework gives you the following (but not limited to) benefits:\n- A modular system with light Dependency Injection, Routing, and more.\n- Easy HTTP request/response management.\n- Config parsing into the DI container at application boot.\n- Templating via the Mustache template specification.\n\nHere's an example of how you can use Steward!\n\n```dart\nimport 'package:steward/steward.dart';\n\nFuture main() async {\n  final router = Router();\n  final container = Container();\n  \n  // Setup a DI binding for UserService\n  container.bind('UserService', (_) =\u003e UserService());\n  \n  // Replace the default DI container implementation\n  router.setContainer(container);\n  \n  // Bare route handler example\n  router.get('/hello', (_) {\n    return Response.Ok('Hello World!');\n  });\n  \n  // Plucking things out of the container example\n  router.get('/config', (Context context) {\n    print(context.make('@config.app.name'));\n    return Response.Ok(context.make('@config.app.name'));\n  });\n  \n  // Path Params example\n  router.get('/:name', (Context context) {\n    return Response.Ok(context.request.pathParams['name']);\n  });\n  \n  var app = App(router: router);\n  return app.start();\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbradcypert%2Fsteward","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbradcypert%2Fsteward","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbradcypert%2Fsteward/lists"}