PHPackages                             cundd/rest-adapter - 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. [API Development](/categories/api)
4. /
5. cundd/rest-adapter

ActiveLibrary[API Development](/categories/api)

cundd/rest-adapter
==================

TypeScript Adapter for \[Cundd Rest\](https://rest.cundd.net)

0.3.1(6y ago)010MITTypeScript

Since Jan 22Pushed 6y ago1 watchersCompare

[ Source](https://github.com/cundd/rest-adapter-typescript)[ Packagist](https://packagist.org/packages/cundd/rest-adapter)[ RSS](/packages/cundd-rest-adapter/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (4)Used By (0)

TypeScript Adapter for [Cundd Rest](https://rest.cundd.net)
===========================================================

[](#typescript-adapter-for-cundd-rest)

Library to fetch and deserialize objects from a REST API

```
import {AdapterConfiguration, RestAdapter, PropertyTypeOptions, ra_property} from '@cundd/rest-adapter';

export class Person {
    // Map property `name` 1:1 when converting
    @ra_property()
    public name: string;

    // Convert the input data of `realEstates` into an array of `RealEstate` objects
    @ra_property(RealEstate, PropertyTypeOptions.Multiple)
    public realEstates: RealEstate[];
}

export class RealEstate {
    // Use key `street` for property `_street` when converting
    @ra_property('street')
    private _street: string;

    get street(): string {
        return this._street;
    }
}

const rd = new RestAdapter(AdapterConfiguration.fromUrl('http://base.url.tld/rest/'));
const promise = rd.findAll('Iresults-RealEstate-Person');
promise
    .then((foundPersons: Person[])=> {
        // Do something with the found records
    })
    .catch(error => {
        // Handle errors
    });
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

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 ~427 days

Total

2

Last Release

2236d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/da109c98da5adda4f3818c747dbba428d1e80c06ece9e51aabd716ba76024ef4?d=identicon)[cundd](/maintainers/cundd)

---

Top Contributors

[![cundd](https://avatars.githubusercontent.com/u/743122?v=4)](https://github.com/cundd "cundd (71 commits)")

---

Tags

restrest-clientrestful-apitypescripttypescript-adaptertypo3

### Embed Badge

![Health badge](/badges/cundd-rest-adapter/health.svg)

```
[![Health](https://phpackages.com/badges/cundd-rest-adapter/health.svg)](https://phpackages.com/packages/cundd-rest-adapter)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M475](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M452](/packages/google-gax)

PHPackages © 2026

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