{"id":18814963,"url":"https://github.com/simplymichael/express-api-starter-kit","last_synced_at":"2026-05-01T00:31:47.138Z","repository":{"id":229901660,"uuid":"777879124","full_name":"simplymichael/express-api-starter-kit","owner":"simplymichael","description":"A starter kit for building REST API applications with Express.js.","archived":false,"fork":false,"pushed_at":"2024-04-19T21:38:29.000Z","size":345,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-22T05:34:45.331Z","etag":null,"topics":["api","express","kit","rest","rest-api","setup","starter"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/simplymichael.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2024-03-26T17:11:18.000Z","updated_at":"2024-04-19T21:38:33.000Z","dependencies_parsed_at":"2024-04-09T21:46:14.446Z","dependency_job_id":"5c53d729-3533-434e-8326-5ecc2806ebbe","html_url":"https://github.com/simplymichael/express-api-starter-kit","commit_stats":null,"previous_names":["simplymichael/express-api-starter-kit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simplymichael/express-api-starter-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplymichael%2Fexpress-api-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplymichael%2Fexpress-api-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplymichael%2Fexpress-api-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplymichael%2Fexpress-api-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplymichael","download_url":"https://codeload.github.com/simplymichael/express-api-starter-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplymichael%2Fexpress-api-starter-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32481553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"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","express","kit","rest","rest-api","setup","starter"],"created_at":"2024-11-07T23:47:11.185Z","updated_at":"2026-05-01T00:31:47.115Z","avatar_url":"https://github.com/simplymichael.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Express API Starter Kit\nA starter kit for building REST API applications with Express.js.\n\n[![Node version][node-version-image]][node-url]\n[![License][license-image]][license-url]\n[![Conventional commits][conventional-commits-image]][conventional-commits-url]\n[![Tests][ci-image]][ci-url]\n[![Coverage][codecov-image]][codecov-url]\n\n## Routing \nRoutes are defined in the `src/routes` directory. Each route is an object with several properties.\nOne of these properties is the `handler` property which specifies the request handler for this route.\nThe handler can be specified in one of four ways:\n- A function\n- An array: `[controller: Object|String, method: Function|String]`\n- An object: `{ controller: Object|String, method: Function|String }`\n- A string `\"controller.method\"`\n\n## Dependency Injection (DI) Container \nEvery route handler (both controller methods and stand-alone functions) has access \nto the DI Container's methods (`register` and `resolve`) via the `this` property. \nAlso, every middleware and route handler can access these methods via the `req.app` property.\n\n\n## Contributing\n- \u003ca name=\"report-a-bug\"\u003e[Report a bug][bug]\u003c/a\u003e\n- \u003ca name=\"request-a-new-feature\"\u003e[Request a new feature][fr]\u003c/a\u003e\n- \u003ca name=\"submit-a-pull-request\"\u003e[Submit a pull request][pr]\u003c/a\u003e\n- \u003ca name=\"contributing-guide\"\u003eCheckout the [Contributing guide][contribute]\u003c/a\u003e\n\n\n## License\n[MIT License][license-url]\n\n\n## Author\n[Simplymichael](https://github.com/simplymichael) ([simplymichaelorji@gmail.com](mailto:simplymichaelorji@gmail.com))\n\n\n[node-url]: https://nodejs.org/\n[node-version-image]: https://img.shields.io/node/v/express-api-starter-kit\n[license-url]: https://github.com/simplymichael/express-api-starter-kit/blob/main/LICENSE.md\n[license-image]: https://img.shields.io/github/license/simplymichael/express-api-starter-kit\n[conventional-commits-url]: https://conventionalcommits.org\n[conventional-commits-image]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-brightgreen.svg\n[ci-url]: https://github.com/simplymichael/express-api-starter-kit/actions/workflows/run-coverage-tests.yml\n[ci-image]: https://github.com/simplymichael/express-api-starter-kit/workflows/tests/badge.svg\n[codecov-url]: https://codecov.io/gh/simplymichael/express-api-starter-kit\n[codecov-image]: https://img.shields.io/codecov/c/github/simplymichael/express-api-starter-kit?token=N22AUXCAU3\n\n[bug]: https://github.com/simplymichael/express-api-starter-kit/labels/bug\n[contribute]: https://github.com/simplymichael/express-api-starter-kit/blob/master/CONTRIBUTING.md\n[fr]: https://github.com/simplymichael/express-api-starter-kit/labels/feature%20request\n[pr]: https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplymichael%2Fexpress-api-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplymichael%2Fexpress-api-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplymichael%2Fexpress-api-starter-kit/lists"}