{"id":24915569,"url":"https://github.com/cmmvio/cmmv-express","last_synced_at":"2026-02-15T04:36:19.508Z","repository":{"id":266483514,"uuid":"898468747","full_name":"cmmvio/cmmv-express","owner":"cmmvio","description":"HTTP adapter module for using Express as an HTTP server","archived":false,"fork":false,"pushed_at":"2025-02-11T01:04:13.000Z","size":453,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-18T02:56:59.423Z","etag":null,"topics":["cmmv","express","http","server"],"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/cmmvio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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}},"created_at":"2024-12-04T12:59:51.000Z","updated_at":"2025-02-11T01:04:17.000Z","dependencies_parsed_at":"2025-01-24T00:51:16.821Z","dependency_job_id":"974bf4ce-1615-41ac-8b05-d428dffebcc0","html_url":"https://github.com/cmmvio/cmmv-express","commit_stats":null,"previous_names":["andrehrferreira/cmmv-express","cmmvio/cmmv-express"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/cmmvio/cmmv-express","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmmvio%2Fcmmv-express","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmmvio%2Fcmmv-express/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmmvio%2Fcmmv-express/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmmvio%2Fcmmv-express/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cmmvio","download_url":"https://codeload.github.com/cmmvio/cmmv-express/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cmmvio%2Fcmmv-express/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29469652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T04:35:06.950Z","status":"ssl_error","status_checked_at":"2026-02-15T04:33:41.357Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["cmmv","express","http","server"],"created_at":"2025-02-02T07:18:10.946Z","updated_at":"2026-02-15T04:36:19.490Z","avatar_url":"https://github.com/cmmvio.png","language":"TypeScript","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://cmmv.io/\" target=\"blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/cmmvio/docs.cmmv.io/main/public/assets/logo_CMMV2_icon.png\" width=\"300\" alt=\"CMMV Logo\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003eContract-Model-Model-View (CMMV) \u003cbr/\u003e Building scalable and modular applications using contracts.\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://www.npmjs.com/package/@cmmv/express\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/@cmmv/express.svg\" alt=\"NPM Version\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/cmmvio/cmmv-express/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/@cmmv/express.svg\" alt=\"Package License\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://cmmv.io\"\u003eDocumentation\u003c/a\u003e \u0026bull;\n  \u003ca href=\"https://github.com/cmmvio/cmmv/issues\"\u003eReport Issue\u003c/a\u003e\n\u003c/p\u003e\n\n## Description\n\nCMMV (Contract-Model-Model-View) is a minimalistic and modular framework for building scalable applications in TypeScript. Inspired by modern design patterns, CMMV uses contracts to define the entire application, from ORM entities to REST controllers and WebSocket endpoints, allowing for a highly structured and maintainable codebase.\n\n## Legacy Setup (Manual)\n\nIf you prefer to set up the project manually, you can still install the necessary modules individually:\n\n```bash\n$ pnpm add @cmmv/express express body-parser cors express-session helmet uuid\n```\n\n## Quick Start\n\nThe `@cmmv/express` module provides an alternative HTTP adapter based on [Express](https://expressjs.com/), allowing you to use Express middleware and features seamlessly with your CMMV application.\n\n```typescript\nimport { Application } from \"@cmmv/core\";\nimport { DefaultHTTPModule } from \"@cmmv/http\";\nimport { ExpressAdapter } from \"@cmmv/express\";\nimport { ViewModule } from \"@cmmv/view\";\n\nApplication.create({\n    httpAdapter: ExpressAdapter, // Add the ExpressAdapter here\n    wsAdapter: WSAdapter,\n    modules: [DefaultHTTPModule],\n    services: [...],\n    contracts: [...]\n});\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcmmvio%2Fcmmv-express","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcmmvio%2Fcmmv-express","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcmmvio%2Fcmmv-express/lists"}