PHPackages                             jadephp/jade - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. jadephp/jade

ActiveLibrary[HTTP &amp; Networking](/categories/http)

jadephp/jade
============

Jade is a flexible PHP micro framework

0.0.2(6y ago)149MITPHPPHP ^7.1.3CI failing

Since Aug 6Pushed 6y ago1 watchersCompare

[ Source](https://github.com/jadephp/jade)[ Packagist](https://packagist.org/packages/jadephp/jade)[ RSS](/packages/jadephp-jade/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (10)Versions (4)Used By (0)

 [ ![CakePHP](https://avatars2.githubusercontent.com/u/53564481?s=200) ](https://cakephp.org/)

 [ ![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265) ](LICENSE) [ ![Build Status](https://camo.githubusercontent.com/ee948ca9bab6dcec3dddb95aa2383abb6e9bba11bcb1ce56e1dcf71078fe16f0/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a6164657068702f6a6164652f6d61737465722e7376673f7374796c653d666c61742d737175617265) ](https://travis-ci.org/jadephp/jade) [ ![Coverage Status](https://camo.githubusercontent.com/797941602c7c5daaf1a9a87e2b1aa28e16d6d012402fc0d5ab0863850bd6d8de/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f6a6164657068702f6a6164652e7376673f7374796c653d666c61742d737175617265) ](https://codecov.io/github/jadephp/jade) [ ![Scrutinizer](https://camo.githubusercontent.com/2e67a5c88dd8e51bd3b018145f25ee443bacd39d7d447250866ab3d554c905d7/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6a6164657068702f6a6164652e7376673f7374796c653d666c61742d737175617265) ](https://scrutinizer-ci.com/g/jadephp/jade/?branch=master) [ ![Latest Stable Version](https://camo.githubusercontent.com/f6ab6798d96fb3f1bf33a7d00cfcd6de4909fcd78ff806b8f2b6b31b156b9d5b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6164657068702f6a6164652e7376673f7374796c653d666c61742d737175617265266c6162656c3d737461626c65) ](https://packagist.org/packages/jadephp/jade)

Jade is a flexible PHP micro framework to develop web applications and APIs

Installation
------------

[](#installation)

The recommended way to install Jade is through Composer:

```
$ composer require jadephp/jade
```

Quick Start
-----------

[](#quick-start)

```
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
use Zend\Diactoros\Response;

// 1. Create App
$app = new Jade\App();

// 2. Add routes
$app->get('/ping', function(ServerRequestInterface $request){
    return new Response\TextResponse('pong');
});

// 3. Add middlewares
$app->pipe(function(ServerRequestInterface $request, RequestHandlerInterface $handler){
   $response = $handler->handle($request);
   return $response->withHeader('X-Jade-Version', '0.0.1');
});

// 4. Listen and serve.
$app->serve();
```

The above code can create a simple heartbeat application.

Test this with the built-in PHP server:

```
php -S 127.0.0.1:8000
```

Use the browser open `http://127.0.0.1:8000/ping`

Documentation
-------------

[](#documentation)

Read the [documentation](./docs/index.md) for more information

Tests
-----

[](#tests)

To run the test suite, you need PHPUnit:

```
$ phpunit
```

License
-------

[](#license)

Jade is licensed under The MIT license. See [MIT](https://opensource.org/licenses/MIT)

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

2472d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3785826?v=4)[Tao](/maintainers/slince)[@slince](https://github.com/slince)

---

Top Contributors

[![slince](https://avatars.githubusercontent.com/u/3785826?v=4)](https://github.com/slince "slince (17 commits)")

---

Tags

frameworkjadejade-frameworkmicro-frameworkphppsr-15psr-7web-frameworkpsr-7psr-15jadephp frameworkmicro-framework

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jadephp-jade/health.svg)

```
[![Health](https://phpackages.com/badges/jadephp-jade/health.svg)](https://phpackages.com/packages/jadephp-jade)
```

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.6k38.2k](/packages/matomo-matomo)[bitrix24/b24phpsdk

An official PHP library for the Bitrix24 REST API

10139.4k5](/packages/bitrix24-b24phpsdk)[mezzio/mezzio-swoole

Swoole support for Mezzio

92247.8k3](/packages/mezzio-mezzio-swoole)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
