awesome-repositories.com
Blog
MCP
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektMCP-ServerÜber unsRanking-MethodikPresse
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 Repos

Awesome GitHub RepositoriesClass Instance to Plain Object Converters

Converts class instances back into plain JavaScript objects for serialization or transmission.

Distinct from Object Transformation: Distinct from Object Transformation: specifically converts class instances to plain objects, not general property manipulation on arbitrary objects.

Explore 5 awesome GitHub repositories matching data & databases · Class Instance to Plain Object Converters. Refine with filters or upvote what's useful.

Awesome Class Instance to Plain Object Converters GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • typestack/class-transformerAvatar von typestack

    typestack/class-transformer

    7,334Auf GitHub ansehen↗

    class-transformer is a TypeScript library that converts plain JavaScript objects into typed class instances and back, using decorators to define transformation rules. It serves as a decorator-based object transformer, JSON deserialization library, and property transformation framework, enabling type-safe serialization and deserialization of class instances. The library distinguishes itself through comprehensive property filtering and mapping capabilities. It supports excluding properties by default, by prefix, by operation (serialization or deserialization), or by explicit marking, as well as

    Converts class instances back into plain JavaScript objects for serialization or transmission.

    TypeScriptexposing-gettersexposing-propertiestransformation
    Auf GitHub ansehen↗7,334
  • mobxjs/mobx-state-treeAvatar von mobxjs

    mobxjs/mobx-state-tree

    7,050Auf GitHub ansehen↗

    MobX State Tree is a structured, tree-based state management library for JavaScript applications that combines typed model definitions with reactive snapshots and patch-based change tracking. It provides a reactive state container with runtime and compile-time type safety, where application state is defined as a tree of typed models with collocated actions, computed views, and lifecycle hooks for predictable state mutations. The library is built around an action-centric mutation model that encapsulates all state changes within named functions that directly modify the tree, supported by genera

    Converts a model tree into an immutable plain JavaScript object for transport or serialization.

    TypeScripthacktoberfestmobxmobx-state-tree
    Auf GitHub ansehen↗7,050
  • python-attrs/attrsAvatar von python-attrs

    python-attrs/attrs

    5,799Auf GitHub ansehen↗

    attrs is a Python library that automatically generates initialization, representation, equality, hashing, and ordering methods from declarative class attribute definitions. At its core, it provides a class decorator metaprogramming framework that intercepts class creation to rewrite the class body, producing dunder methods without manual boilerplate. The library includes a comprehensive attribute validation toolkit with built-in validators for type checks, range constraints, regex matching, length limits, and logical composition of validation rules. The library distinguishes itself through it

    Converts class instances into plain dictionaries for serialization or inspection.

    Python
    Auf GitHub ansehen↗5,799
  • vuejs/vue-class-componentAvatar von vuejs

    vuejs/vue-class-component

    5,763Auf GitHub ansehen↗

    Diese Bibliothek bietet ein strukturelles Muster für den Aufbau von UI-Komponenten unter Verwendung von ES6-Klassen und Decorators. Sie fungiert als TypeScript-Komponentenbibliothek, die es Entwicklern ermöglicht, Zustand und Logik innerhalb des Vue-Frameworks zu verwalten, indem Komponenten als Klassen anstelle von Standard-Optionsobjekten definiert werden. Das Projekt nutzt einen TypeScript-Decorator, um Klasseneigenschaften und -methoden in das vom Framework-Runtime benötigte Standardformat zu übersetzen. Dieser Ansatz ermöglicht eine klassenbasierte Komponentenarchitektur, die TypeScript für verbesserte Typsicherheit und Codeorganisation nutzt. Das System konvertiert klassenbasierte Definitionen in einfache JavaScript-Objekte durch prototypbasierte Logikextraktion und decoratorbasiertes Mapping. Zudem synchronisiert es Datenaktualisierungen, indem Klasseninstanzmitglieder auf das reaktive Zustandssystem der Komponente abgebildet werden.

    Converts class-based component definitions into plain JavaScript objects to maintain compatibility with the framework's internal options system.

    TypeScript
    Auf GitHub ansehen↗5,763
  • biolab/orange3Avatar von biolab

    biolab/orange3

    5,635Auf GitHub ansehen↗

    Orange3 is a visual data mining platform that provides an interactive canvas for building data analysis workflows without writing code. At its core, it offers a widget-based visual programming environment where users connect configurable components to perform data preprocessing, machine learning model training, statistical evaluation, and interactive visualization. The platform is built on NumPy-backed data tables with domain descriptors that define variable names, types, and roles, and includes a lazy SQL query proxy for working with database tables without loading all data into memory. The

    Transforms individual data instances between different domain schemas with automatic value conversion.

    Python
    Auf GitHub ansehen↗5,635
  1. Home
  2. Data & Databases
  3. Ordered Data Structures
  4. Ordered Collection Literals
  5. Object Collection Processors
  6. Object Transformation
  7. Class Instance to Plain Object Converters

Unter-Tags erkunden

  • Instance-Aware Converters1 Sub-TagWraps a converter to receive the current instance and field definition during value conversion. **Distinct from Class Instance to Plain Object Converters:** Distinct from Class Instance to Plain Object Converters: focuses on converters that receive instance context, not general instance-to-plain-object conversion.
  • Python Class Instance to Dict ConvertersConverts Python class instances into plain dictionaries for serialization or inspection. **Distinct from Class Instance to Plain Object Converters:** Distinct from Class Instance to Plain Object Converters: targets Python classes, not JavaScript objects.