awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

Awesome GitHub RepositoriesPath-to-Array Converters

Tools for converting path expressions into array representations.

Distinguishing note: Focuses on path serialization rather than general data conversion.

Explore 3 awesome GitHub repositories matching data & databases · Path-to-Array Converters. Refine with filters or upvote what's useful.

Awesome Path-to-Array Converters GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • jqlang/jqالصورة الرمزية لـ jqlang

    jqlang/jq

    34,901عرض على GitHub↗

    This project is a command-line processor designed for the parsing, filtering, and transformation of structured data streams. It functions as a declarative programming environment that treats data as immutable streams, allowing users to perform complex structural modifications through the composition of small, reusable functions. By utilizing a recursive tree traversal engine, the system enables the navigation, inspection, and modification of deeply nested hierarchical data structures. The engine distinguishes itself through a stream-oriented architecture that processes input records one by on

    Converts path expressions into array representations to identify keys and indices.

    Cjq
    عرض على GitHub↗34,901
  • immutable-js/immutable-jsالصورة الرمزية لـ immutable-js

    immutable-js/immutable-js

    33,060عرض على GitHub↗

    Immutable.js is a library of persistent data structures and a functional state management toolkit. It provides a collection of immutable objects and arrays that prevent direct mutation to ensure predictable state management in JavaScript applications. The library utilizes structural sharing to efficiently create new versions of data without full copying and implements lazy sequence processing to chain data transformations that execute only when values are requested. It also supports batch mutation processing, allowing multiple changes to be applied to a temporary mutable copy before returning

    Uses path-copying persistence to create new versions of data structures while preserving previous state.

    TypeScript
    عرض على GitHub↗33,060
  • greensock/gsapالصورة الرمزية لـ greensock

    greensock/GSAP

    23,877عرض على GitHub↗

    GSAP is a comprehensive JavaScript animation library designed for orchestrating complex motion sequences and interactive user interfaces. It provides a robust property-interpolation engine that calculates intermediate values for CSS styles, attributes, and numeric properties, enabling smooth visual transitions across web elements. The framework is built on a core architecture that manages animation lifecycles, timeline-based sequence orchestration, and virtual property interception to ensure precise control over motion. The library distinguishes itself through a modular, plugin-based extensib

    Converts between various SVG path formats and coordinate arrays to standardize motion data for animation.

    JavaScriptanimationgsapjavascript
    عرض على GitHub↗23,877
  1. Home
  2. Data & Databases
  3. Path-to-Array Converters

استكشف الوسوم الفرعية

  • Path-Copying PersistenceA persistence strategy that creates new nodes along the path to a modification to preserve previous state versions. **Distinct from Path-to-Array Converters:** Focuses on immutable state persistence via path duplication rather than converting paths to arrays.