{"id":13527556,"url":"https://github.com/mandarineorg/mandarinets","last_synced_at":"2025-10-20T17:42:26.905Z","repository":{"id":37731562,"uuid":"263172124","full_name":"mandarineorg/mandarinets","owner":"mandarineorg","description":"Mandarine.TS is a typescript, decorator-driven framework that allows you to create server-side applications. Mandarine.TS provides a range of built-in solutions such as Dependency Injection, Components, ORM and more. Under its umbrella, Mandarine.TS has 4 modules: Core, Data, Security and MVC, these modules will offer you the requirements to build a Mandarine-powered application.","archived":false,"fork":false,"pushed_at":"2022-02-24T05:09:21.000Z","size":22877,"stargazers_count":273,"open_issues_count":13,"forks_count":13,"subscribers_count":14,"default_branch":"master","last_synced_at":"2024-10-17T21:15:21.194Z","etag":null,"topics":["deno","denoland","dependency-injection","enterprise","framework","mandarine","mvc","orm","typescript","typescript-framework"],"latest_commit_sha":null,"homepage":"https://www.mandarinets.org/","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/mandarineorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"security-core/core/decorators/allowOnly.ts","support":null}},"created_at":"2020-05-11T22:23:37.000Z","updated_at":"2024-08-27T16:28:26.000Z","dependencies_parsed_at":"2022-08-08T21:30:35.846Z","dependency_job_id":null,"html_url":"https://github.com/mandarineorg/mandarinets","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarineorg%2Fmandarinets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarineorg%2Fmandarinets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarineorg%2Fmandarinets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandarineorg%2Fmandarinets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mandarineorg","download_url":"https://codeload.github.com/mandarineorg/mandarinets/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222715679,"owners_count":17027699,"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":["deno","denoland","dependency-injection","enterprise","framework","mandarine","mvc","orm","typescript","typescript-framework"],"created_at":"2024-08-01T06:01:51.251Z","updated_at":"2025-10-20T17:42:21.845Z","avatar_url":"https://github.com/mandarineorg.png","language":"TypeScript","readme":"# Mandarine.TS\n[![MandarineTS CI](https://github.com/mandarineorg/mandarinets/workflows/ci/badge.svg)](https://github.com/mandarineorg/mandarinets)\n[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts)\n\n\u003cimg src=\"https://www.mandarinets.org/assets/images/full-logo-simple.svg\" width=\"180\" height=\"180\" /\u003e\n\nMandarineTS. A minimalist, decorator-driven, MVC, typescript framework for [Deno](https://deno.land).\n\n## Description\nMandarine is a typescript framework that runs on Deno. Mandarine is used to create scalable and reliable server-side solutions. With the use of OOP (Object-oriented programming) and the benefits of Typescript, Mandarine makes sure to give you a better coding experience not only in terms of design patterns such as Dependency Injection but in terms of readability for enterprise code.\n\nMandarine is divided into 4 different cores that are used to accomplish the same objective: A high-quality enterprise solution. These cores are: Core, MVC, Data \u0026 Security. The 4 different cores perform different tasks in order to bring modularity to your application.\n\nFor its MVC Core, Mandarine uses [Oak](https://github.com/oakserver/oak) under the hood as its main HTTP dispatcher.\n\n## Documentation\nTo see all the available documentation of Mandarine.TS, please [Click here](https://www.mandarinets.org/docs/mandarine/introduction).  \nDon't know where to start? [Click here](https://www.mandarinets.org/docs/master/mandarine/hello-world) for our quickstart\n\n## Basic usage\n\n```typescript\nimport { MandarineCore, Controller, GET } from \"https://deno.land/x/mandarinets@v2.3.2/mod.ts\"; \n\n@Controller('/api')\nexport class Boo {\n     \n    @GET('/hello-world')\n    public helloWorld(): string {\n        return \"Hello World\";\n    }\n\n}\n\nnew MandarineCore().MVC().run();\n\n# request =\u003e http://localhost:4444/api/hello-world =\u003e Hello World\n```\n\n## Questions\nFor questions \u0026 community support, please visit our [Discord Channel](https://discord.gg/qs72byB) or join us on our [twitter](https://twitter.com/mandarinets).\n\n## MandarineTS Main features\nBuilt-in [Dependency Injection](https://www.mandarinets.org/docs/master/mandarine/dependency-injection) Framework, [Components](https://www.mandarinets.org/docs/master/mandarine/components), [Routes](https://www.mandarinets.org/docs/master/mandarine/routes), [Middleware](https://www.mandarinets.org/docs/master/mandarine/custom-middleware), [Sessions](https://www.mandarinets.org/docs/master/mandarine/session-middleware), [built-in ORM](https://www.mandarinets.org/docs/master/mandarine/data-repositories), [MQL](https://www.mandarinets.org/docs/master/mandarine/mandarine-query-language) (Mandarine Query Language), [Template Engine](https://www.mandarinets.org/docs/master/mandarine/template-engine), [built-in authentication](https://www.mandarinets.org/docs/mandarine/auth-introduction)\n\n## Want to help?\n### Interested in coding\nIn order to submit improvements to the code, open a PR and wait for it to review. We appreciate you doing this.\n### Not interested in coding\nWe would love to have you in our community, [please submit an issue](https://github.com/mandarineorg/mandarinets/issues) to provide information about a bug, feature, or improvement you would like.\n\n## Follow us wherever we are going\n- Author : [Andres Pirela](https://twitter.com/andreestech)\n- Website : https://www.mandarinets.org/\n- Twitter : [@mandarinets](https://twitter.com/mandarinets)\n- Discord : [Click here](https://discord.gg/qs72byB)\n\n\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandarineorg%2Fmandarinets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmandarineorg%2Fmandarinets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandarineorg%2Fmandarinets/lists"}