{"id":16939192,"url":"https://github.com/siemienik/siemply","last_synced_at":"2026-04-30T10:31:18.390Z","repository":{"id":61566465,"uuid":"542822021","full_name":"Siemienik/Siemply","owner":"Siemienik","description":"Siemply is super SIMPLE handlers framework for AWS Lambda.","archived":false,"fork":false,"pushed_at":"2022-11-15T21:35:16.000Z","size":28,"stargazers_count":1,"open_issues_count":8,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-13T04:35:14.663Z","etag":null,"topics":["aws","aws-lambda","hacktoberfest","http","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/Siemienik.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":"2022-09-28T22:47:14.000Z","updated_at":"2022-11-15T21:41:05.000Z","dependencies_parsed_at":"2023-01-21T20:02:38.218Z","dependency_job_id":null,"html_url":"https://github.com/Siemienik/Siemply","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siemienik%2FSiemply","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siemienik%2FSiemply/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siemienik%2FSiemply/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Siemienik%2FSiemply/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Siemienik","download_url":"https://codeload.github.com/Siemienik/Siemply/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247353676,"owners_count":20925325,"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","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":["aws","aws-lambda","hacktoberfest","http","typescript"],"created_at":"2024-10-13T21:03:56.735Z","updated_at":"2026-04-30T10:31:18.348Z","avatar_url":"https://github.com/Siemienik.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Siemply\nSiemply is super SIMPLE handlers framework for AWS Lambda.\n\n```ts\nexport handlerCountrySingle = siemply()\n    .step(findCountryStep);\n\n// Example step construction\nexport handlerProvinceCollection = handlerCountrySingle.step(({country, ...payload})=\u003e({\n    ...payload,\n    country, //types provided\n    provinces: findAllProvinces({country:country.id})\n}));\n\n// Nesting handlers: /countries/{countryId}/provinces/{provinceId}\nexport handlerProvinceSingle = handlerCountrySingle.step(findProvinceInCountryStep);\n\n// /countries/{countryId}/provinces/{provinceId}/cities\nexport handlerCityCollection = handlerCountrySingle.step(findCitiesInProvinceInCountryStep);\n// /countries/{countryId}/provinces/{provinceId}/cities/{cityId}\nexport handlerCitySingle = handlerCountrySingle.step(({$event, country, province ...payload})=\u003e({\n    $event,\n    ...payload,\n    country,\n    province,\n    city: findCity($event?.queryParameters?.cityId, {countryId: country.id, provinceId: province.id}), \n}));\nexport handlerCityRemove = handlerCitySingle.step(({city, ...payload})=\u003e{\n    removeCity(city.id);\n\n    return {\n        ...payload,\n        city, \n        $statusCode: 204\n    };\n);\n\n```\n## Development:\n\n* `yarn tsc` to run builder.\n\n## Todos:\n\n* [ ] linter\n* [ ] Jest / pure handler\n* [ ] Jest / labda handler","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiemienik%2Fsiemply","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiemienik%2Fsiemply","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiemienik%2Fsiemply/lists"}