{"id":14967746,"url":"https://github.com/jadephp/jade","last_synced_at":"2025-10-25T21:31:49.800Z","repository":{"id":56995674,"uuid":"200034515","full_name":"jadephp/jade","owner":"jadephp","description":"Jade is a flexible PHP micro framework.","archived":false,"fork":false,"pushed_at":"2019-09-24T05:08:57.000Z","size":102,"stargazers_count":14,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-31T10:36:14.320Z","etag":null,"topics":["framework","jade","jade-framework","micro-framework","php","psr-15","psr-7","web-framework"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/jadephp.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}},"created_at":"2019-08-01T11:02:52.000Z","updated_at":"2023-09-15T01:52:30.000Z","dependencies_parsed_at":"2022-08-21T14:10:11.249Z","dependency_job_id":null,"html_url":"https://github.com/jadephp/jade","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadephp%2Fjade","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadephp%2Fjade/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadephp%2Fjade/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadephp%2Fjade/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jadephp","download_url":"https://codeload.github.com/jadephp/jade/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238212407,"owners_count":19434955,"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":["framework","jade","jade-framework","micro-framework","php","psr-15","psr-7","web-framework"],"created_at":"2024-09-24T13:38:32.993Z","updated_at":"2025-10-25T21:31:44.490Z","avatar_url":"https://github.com/jadephp.png","language":"PHP","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://cakephp.org/\" target=\"_blank\" \u003e\n    \u003cimg alt=\"CakePHP\" src=\"https://avatars2.githubusercontent.com/u/53564481?s=200\" width=\"150\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"LICENSE\" target=\"_blank\"\u003e\n        \u003cimg alt=\"Software License\" src=\"https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://travis-ci.org/jadephp/jade\" target=\"_blank\"\u003e\n        \u003cimg alt=\"Build Status\" src=\"https://img.shields.io/travis/jadephp/jade/master.svg?style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://codecov.io/github/jadephp/jade\" target=\"_blank\"\u003e\n        \u003cimg alt=\"Coverage Status\" src=\"https://img.shields.io/codecov/c/github/jadephp/jade.svg?style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://scrutinizer-ci.com/g/jadephp/jade/?branch=master\" target=\"_blank\"\u003e\n        \u003cimg alt=\"Scrutinizer\" src=\"https://img.shields.io/scrutinizer/g/jadephp/jade.svg?style=flat-square\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/jadephp/jade\" target=\"_blank\"\u003e\n        \u003cimg alt=\"Latest Stable Version\" src=\"https://img.shields.io/packagist/v/jadephp/jade.svg?style=flat-square\u0026label=stable\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\nJade is a flexible PHP micro framework to develop web applications and APIs\n \n## Installation\n\nThe recommended way to install Jade is through Composer:\n\n```bash\n$ composer require jadephp/jade\n```\n\n## Quick Start\n\n```php\n\nuse Psr\\Http\\Message\\ServerRequestInterface;\nuse Psr\\Http\\Server\\RequestHandlerInterface;\nuse Zend\\Diactoros\\Response;\n\n// 1. Create App\n$app = new Jade\\App();\n\n// 2. Add routes\n$app-\u003eget('/ping', function(ServerRequestInterface $request){\n    return new Response\\TextResponse('pong');\n});\n\n// 3. Add middlewares\n$app-\u003epipe(function(ServerRequestInterface $request, RequestHandlerInterface $handler){\n   $response = $handler-\u003ehandle($request);\n   return $response-\u003ewithHeader('X-Jade-Version', '0.0.1');\n});\n\n// 4. Listen and serve.\n$app-\u003eserve();\n```\n\nThe above code can create a simple heartbeat application.\n\nTest this with the built-in PHP server:\n\n```bash\nphp -S 127.0.0.1:8000\n```\nUse the browser open `http://127.0.0.1:8000/ping`\n\n## Documentation\n\nRead the [documentation](./docs/index.md) for more information \n\n## Tests\n\nTo run the test suite, you need PHPUnit:\n\n```bash\n$ phpunit\n```\n\n## License\n\nJade is licensed under The MIT license. See [MIT](https://opensource.org/licenses/MIT)\n \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjadephp%2Fjade","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjadephp%2Fjade","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjadephp%2Fjade/lists"}