{"id":28404987,"url":"https://github.com/crisfeim/backend-sandbox-swift-rest","last_synced_at":"2025-10-04T20:10:19.338Z","repository":{"id":292349808,"uuid":"979536470","full_name":"crisfeim/backend-sandbox-swift-rest","owner":"crisfeim","description":"🏖️  Sandbox on how to build a lightweight dynamic minimal REST API server in Swift for learning purposes.","archived":false,"fork":false,"pushed_at":"2025-05-09T12:35:24.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-10T06:19:58.919Z","etag":null,"topics":["reinventing-the-wheel-for-learning-purposes","server-side-swift"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crisfeim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-05-07T17:03:14.000Z","updated_at":"2025-06-27T16:19:50.000Z","dependencies_parsed_at":"2025-05-09T19:15:14.996Z","dependency_job_id":null,"html_url":"https://github.com/crisfeim/backend-sandbox-swift-rest","commit_stats":null,"previous_names":["crisrojas/x-simple-swift-rest-api-server","crisfeim/x-simple-swift-rest-api-server","crisfeim/sandbox-swift-rest","crisfeim/backend-sandbox-swift-rest"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/crisfeim/backend-sandbox-swift-rest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crisfeim%2Fbackend-sandbox-swift-rest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crisfeim%2Fbackend-sandbox-swift-rest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crisfeim%2Fbackend-sandbox-swift-rest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crisfeim%2Fbackend-sandbox-swift-rest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crisfeim","download_url":"https://codeload.github.com/crisfeim/backend-sandbox-swift-rest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crisfeim%2Fbackend-sandbox-swift-rest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278366664,"owners_count":25975095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"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":["reinventing-the-wheel-for-learning-purposes","server-side-swift"],"created_at":"2025-06-01T21:10:09.303Z","updated_at":"2025-10-04T20:10:18.640Z","avatar_url":"https://github.com/crisfeim.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Swift REST-API Server\n\nExploration on how to build a lightweight dynamic minimal **REST API server** in Swift for learning purposes.\n\n## Desired API\n\nA simple but extensible API surface for declaring endpoints, inspired by declarative patterns.\n\n```swift\nlet cd = CoreDataProvider()\nlet fs = FileSystemDataProvider()\n\nlet recipes = Endpoint(\n\tpath: \"recipes\", \n\tdataProvider: fs, \n\tauth: .bearAuth\n)\n\nlet todos = Endpoint(\n\tpath: \"todos\", \n\tdataProvider: cd\n)\n\nlet users = Endpoint(path: \"users\", provider: fs)\n\nServer(endpoits: [recipes, todos, users])\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrisfeim%2Fbackend-sandbox-swift-rest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrisfeim%2Fbackend-sandbox-swift-rest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrisfeim%2Fbackend-sandbox-swift-rest/lists"}