awesome-repositories.com
Blog
awesome-repositories.com

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

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

161 Repos

Awesome GitHub RepositoriesData Transformation Functions

Built-in functions for performing arithmetic and logical operations on data.

Distinguishing note: Focuses on data transformation logic rather than general-purpose math libraries.

Explore 161 awesome GitHub repositories matching data & databases · Data Transformation Functions. Refine with filters or upvote what's useful.

Awesome Data Transformation Functions GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • vuejs/vueAvatar von vuejs

    vuejs/vue

    209,900Auf GitHub ansehen↗

    Vue ist ein progressives, komponentenbasiertes JavaScript-Framework, das für den Aufbau reaktiver Benutzeroberflächen und Single-Page-Anwendungen entwickelt wurde. Es konzentriert sich auf ein deklaratives Vorlagensystem, das HTML in effiziente Render-Funktionen umwandelt und es Entwicklern ermöglicht, komplexe Schnittstellen in isolierte, wiederverwendbare Einheiten zu organisieren, die automatisch mit dem Anwendungszustand synchronisieren. Das Framework zeichnet sich durch ein reaktivitätsbasiertes Abhängigkeitsverfolgungssystem aus, das den Datenzugriff während des Renderns überwacht, um präzise Updates auszulösen. Es bietet eine flexible Architektur, die sowohl die inkrementelle Einführung als auch die Entwicklung von Anwendungen in vollem Umfang unterstützt. Entwickler können ein robustes, Plugin-basiertes Erweiterbarkeitsmodell nutzen, um globale Logik zu injizieren, während die virtuelle DOM-Abgleichung des Frameworks effiziente Schnittstellen-Updates durch die Berechnung minimaler Mutationen sicherstellt. Über seine Kern-Rendering-Fähigkeiten hinaus enthält das Projekt eine umfassende Suite von Tools zur Verwaltung des Anwendungszustands, URL-basiertem Routing und serverseitigem Rendering. Es bietet umfassende Unterstützung für Komponentenkomposition, Inhaltsverteilung und Animationsmanagement, neben integrierten Sicherheitsmaßnahmen wie automatischem Content-Escaping, um häufige Schwachstellen zu verhindern. Das Framework wird mit offiziellen Typdeklarationen vertrieben, um die statische Analyse zu unterstützen, und kann über Standard-Paketmanager installiert oder direkt über Skript-Tags in Browserumgebungen integriert werden.

    Vue.js passes the result of one transformation function into the next sequentially to perform complex data processing in a single expression.

    TypeScriptframeworkfrontendjavascript
    Auf GitHub ansehen↗209,900
  • azl397985856/leetcodeAvatar von azl397985856

    azl397985856/leetcode

    55,758Auf GitHub ansehen↗

    This project is a curated educational resource and solution repository for algorithmic challenges, specifically focused on LeetCode problems. It serves as a technical reference for common data structures and algorithmic patterns, providing verified code implementations across multiple programming languages alongside detailed logic and complexity analysis. The repository functions as a comprehensive study guide for competitive programming and technical interview preparation. It includes specialized learning tools such as an Anki flashcard dataset for spaced repetition and a browser extension t

    The project implements recursive functions with inner helpers to aggregate data across all or any nodes in a structure.

    JavaScriptalgoalgorithmalgorithms
    Auf GitHub ansehen↗55,758
  • stedolan/jqAvatar von stedolan

    stedolan/jq

    34,932Auf GitHub ansehen↗

    jq is a command-line JSON processor and data transformer. It provides a functional query language used to slice, filter, map, and transform structured JSON data directly within a terminal. The utility functions as a data transformer that reshapes JSON input into different structures or formats based on declarative logic. This allows for the extraction and analysis of structured data from sources such as API responses and system logs.

    Uses a recursive descent parser to transform raw JSON text into an internal tree representation.

    C
    Auf GitHub ansehen↗34,932
  • jqlang/jqAvatar von jqlang

    jqlang/jq

    34,901Auf GitHub ansehen↗

    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

    Performs arithmetic, logical, and structural transformations on JSON values.

    Cjq
    Auf GitHub ansehen↗34,901
  • facebook/immutable-jsAvatar von facebook

    facebook/immutable-js

    33,060Auf GitHub ansehen↗

    This is a persistent data structure library for JavaScript that provides collections which prevent the direct mutation of objects and arrays. It serves as an immutable state management tool and functional programming utility, ensuring that data remains unchanged after creation to simplify change detection and state tracking. The library enables the maintenance of application state by producing new versions of data structures during updates. It focuses on efficient data comparison by checking actual content instead of memory references and supports a functional programming workflow to prevent

    Supports chaining transformations lazily to avoid the creation of expensive intermediate data structures.

    TypeScript
    Auf GitHub ansehen↗33,060
  • reactivex/rxjsAvatar von ReactiveX

    ReactiveX/rxjs

    31,682Auf GitHub ansehen↗

    RxJS is a library for reactive programming that provides a framework for composing asynchronous and event-based programs. It utilizes observable sequences to model data flows, allowing developers to manage complex sequences of events through a declarative programming interface. The library implements the observer pattern to facilitate decoupled communication between data producers and subscribers. By employing a lazy execution model, streams remain dormant until a consumer explicitly subscribes, at which point data production is triggered. This approach enables the construction of predictable

    Enables complex logic construction through sequential chaining of immutable data transformation functions.

    TypeScriptjavascriptrxjs
    Auf GitHub ansehen↗31,682
  • thejameskyle/the-super-tiny-compilerAvatar von thejameskyle

    thejameskyle/the-super-tiny-compiler

    28,527Auf GitHub ansehen↗

    This project is an educational compiler implementation and a minimalist compiler construction tutorial. It serves as a practical example of how to build a functional compiler through a simplified end-to-end development process, transforming source code into executable instructions. The implementation is designed to teach the fundamentals of language implementation and compiler design. It focuses on the essential mechanics of transforming source code by demonstrating the core architecture of a translation process. The system covers the primary stages of compilation, including lexical analysis

    Uses recursive descent parsing to traverse token streams and construct a syntax tree.

    JavaScript
    Auf GitHub ansehen↗28,527
  • jamiebuilds/the-super-tiny-compilerAvatar von jamiebuilds

    jamiebuilds/the-super-tiny-compiler

    28,525Auf GitHub ansehen↗

    This project is an educational compiler implementation and architecture demo. It serves as a small-scale C-style language compiler designed to demonstrate the fundamental stages of transforming source code into executable machine instructions. The codebase functions as a tool for compiler architecture education and design prototyping. It illustrates the process of building an educational language implementation to help users understand the mechanics of parsing and code generation. The implementation covers the primary stages of a compiler pipeline, including regular expression tokenization,

    Implements a recursive descent parser to convert token streams into a hierarchical tree structure.

    JavaScript
    Auf GitHub ansehen↗28,525
  • fastai/fastaiAvatar von fastai

    fastai/fastai

    27,862Auf GitHub ansehen↗

    Fastai is a high-level deep learning library built on PyTorch that provides a unified interface for managing the entire machine learning lifecycle. It functions as a comprehensive training toolkit, abstracting hardware management and automating complex training loops to simplify the construction and execution of neural network models. The framework is distinguished by its notebook-centric development environment and a type-dispatching data pipeline that automatically applies transformations based on input data formats. It emphasizes transfer learning through discriminative layer-wise optimiza

    Executes specified functions across nested data structures to apply operations to every element.

    Jupyter Notebookcolabdeep-learningfastai
    Auf GitHub ansehen↗27,862
  • oi-wiki/oi-wikiAvatar von OI-wiki

    OI-wiki/OI-wiki

    26,176Auf GitHub ansehen↗

    This project is a comprehensive, community-maintained knowledge base and toolkit designed for competitive programming. It serves as a centralized repository for algorithmic theory, data structures, and mathematical techniques, providing a structured reference for informatics and collegiate programming competitions. The project distinguishes itself by integrating educational content with a robust suite of automation utilities. It provides a complete workflow for competitive programming, including tools for automated test case generation, solution verification, and direct interaction with onlin

    Enables self-referencing function calls to perform recursive operations.

    TypeScriptacm-icpcacm-icpc-handbookalgorithms
    Auf GitHub ansehen↗26,176
  • javascript-tutorial/en.javascript.infoAvatar von javascript-tutorial

    javascript-tutorial/en.javascript.info

    25,344Auf GitHub ansehen↗

    This project is a comprehensive JavaScript programming tutorial and language reference. It serves as a web development education resource providing instruction on modern language fundamentals, object-oriented design, and advanced asynchronous programming patterns. The resource functions as both a frontend development guide and a technical reference. It covers core language features such as closures, prototypes, promises, and typed arrays, while providing practical lessons on managing browser data and handling network requests. The content spans several key capability areas, including browser

    Provides instruction on implementing self-referencing function calls to solve recursive problems.

    HTMLenglishjavascripttutorial
    Auf GitHub ansehen↗25,344
  • winstonjs/winstonAvatar von winstonjs

    winstonjs/winston

    24,478Auf GitHub ansehen↗

    Winston is a versatile logging library for Node.js designed to record system events and metadata. It functions as a multi-transport log manager that routes data to various destinations and a structured log formatter that transforms entries into JSON or plain text. The project is distinguished by its pluggable transport architecture, which decouples the logging interface from delivery mechanisms. This allows for the creation of custom transport extensions and the use of hierarchical logger instances to inherit configurations while attaching persistent metadata to downstream messages. The libr

    Transforms log data into final output strings by passing messages through a sequence of modifier functions.

    JavaScript
    Auf GitHub ansehen↗24,478
  • apify/crawleeAvatar von apify

    apify/crawlee

    24,002Auf GitHub ansehen↗

    Crawlee is a web scraping framework designed for building scalable, reliable, and distributed data extraction pipelines. It provides a unified interface for managing headless browser automation and lightweight HTTP requests, allowing developers to handle complex web navigation, dynamic content rendering, and large-scale data collection within a single, modular architecture. The project distinguishes itself through its resource-aware concurrency controller, which dynamically scales task execution based on real-time CPU and memory usage to prevent host machine exhaustion. It also features a rob

    Processes individual items within a dataset by applying a custom function to each entry before returning the modified result.

    TypeScriptapifyautomationcrawler
    Auf GitHub ansehen↗24,002
  • greensock/gsapAvatar von greensock

    greensock/GSAP

    23,877Auf GitHub ansehen↗

    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

    Creates reusable transformation functions that maintain specific range configurations for repeated processing.

    JavaScriptanimationgsapjavascript
    Auf GitHub ansehen↗23,877
  • chriso/validator.jsAvatar von chriso

    chriso/validator.js

    23,744Auf GitHub ansehen↗

    validator.js is a JavaScript string validation and sanitization library. It provides a set of functions to verify that strings match specific patterns—such as emails, URLs, and alphanumeric formats—and a toolkit for cleaning and transforming text input to remove prohibited characters and trim whitespace. The library includes utilities for standardizing email addresses by lowercasing domains and removing sub-addressing markers. It also functions as an HTML entity escaper, replacing special characters with entities to prevent the browser from executing text as code. The project covers capabili

    Offers stateless functions for modifying and transforming string content without side effects.

    JavaScript
    Auf GitHub ansehen↗23,744
  • samber/loAvatar von samber

    samber/lo

    21,333Auf GitHub ansehen↗

    This library is a collection of generic utilities for the Go programming language designed to simplify the manipulation of slices and maps. It provides a functional toolkit that enables developers to perform data transformations, such as filtering, mapping, and reducing, while maintaining strict type safety through the use of language-level generics. The project distinguishes itself by offering a dual approach to data processing that balances functional programming patterns with performance-oriented execution. It supports both immutable functional pipelines for predictable state transitions a

    Applies functional patterns like map, filter, and reduce to Go collections with strict type safety.

    Goconstraintscontractfilterable
    Auf GitHub ansehen↗21,333
  • katex/katexAvatar von KaTeX

    KaTeX/KaTeX

    20,177Auf GitHub ansehen↗

    KaTeX is a typesetting library and web math renderer that transforms TeX and LaTeX mathematical notation into high-quality HTML and CSS for web browsers. It functions as a math notation parser and LaTeX to HTML converter, capable of operating as both a client-side library and a server-side math renderer to generate static HTML expressions. The project supports a wide range of specialized mathematical rendering, including chemical equation rendering, Bra-ket notation for quantum mechanics, and mathematical logic typesetting. It provides comprehensive controls for structural layouts such as mat

    Transforms TeX input strings into an internal abstract syntax tree by recursively analyzing tokens.

    TypeScriptjavascriptkatexlatex
    Auf GitHub ansehen↗20,177
  • elder-plinius/l1b3rt4sAvatar von elder-plinius

    elder-plinius/L1B3RT4S

    20,033Auf GitHub ansehen↗

    L1B3RT4S is an adversarial machine learning toolkit designed for red teaming and evaluating the robustness of large language models. It provides a research framework for investigating how safety alignment mechanisms and content moderation systems respond to sophisticated input strategies. The project focuses on identifying vulnerabilities in model guardrails by employing techniques such as adversarial narrative framing, dynamic context injection, and latent space steering. It utilizes multi-agent prompt decomposition and recursive text transformation to analyze how structural changes to input

    Applies iterative encoding and obfuscation layers to input prompts to hide malicious intent from static pattern-matching safety filters.

    1337adversarial-attacksai
    Auf GitHub ansehen↗20,033
  • reactjs/reselectAvatar von reactjs

    reactjs/reselect

    19,033Auf GitHub ansehen↗

    Reselect is a memoized selector framework and state selector library designed to optimize performance in Redux applications. It provides a system for computing derived data from a state store and caching the results to prevent unnecessary user interface re-renders. The library functions as a state transformation pipeline, allowing multiple selectors to be composed into chains. This enables the creation of complex data transformation pipelines where the output of one memoized selector serves as the input for another. The framework focuses on input-based memoization and referential equality ch

    Composes multiple selectors into a chain to process complex state trees into specific application data.

    TypeScript
    Auf GitHub ansehen↗19,033
  • antlr/antlr4Avatar von antlr

    antlr/antlr4

    18,928Auf GitHub ansehen↗

    ANTLR ist ein grammatikbasierter Codegenerator und Parser-Generator für mehrere Sprachen, der zum Entwerfen und Implementieren benutzerdefinierter Sprachen verwendet wird. Er fungiert als Toolkit zur Transformation formaler Sprachdefinitionen in ausführbaren Quellcode für die Verarbeitung strukturierter Text- oder Binärdateien, während er gleichzeitig ein Framework für die automatische Konstruktion und Durchquerung hierarchischer Parse-Bäume bereitstellt. Das Projekt zeichnet sich durch seine Fähigkeit aus, Lexer und Parser in verschiedenen Zielprogrammiersprachen aus einer einzigen gemeinsamen Grammatikdefinition zu generieren. Es unterstützt Grammatiken, die direkte Linksrekursion enthalten, und nutzt adaptive Vorhersagen, um die Parsing-Geschwindigkeit zu optimieren und gleichzeitig die Flexibilität zu wahren. Das System deckt ein breites Spektrum an Fähigkeiten ab, einschließlich lexikalischer Analyse, semantischer Prüfung durch Prädikatsauswertung und hierarchischem Datenmanagement. Es bietet Tools für die Analyse von Parse-Bäumen durch pfadbasierte Abfragen und Visitor-Listener-Durchquerungsmuster, um die Grammatiklogik von Anwendungsaktionen zu entkoppeln. Befehlszeilen-Dienstprogramme sind für das Testen von Grammatikdefinitionen und das Debuggen von Logik verfügbar, und das Tool kann in Docker-Containern ausgeführt werden, um lokale Installationen zu vermeiden.

    Supports grammars with direct left recursion, allowing natural expression of recursive structures like arithmetic.

    Java
    Auf GitHub ansehen↗18,928
Vorherige123456…9Nächste
  1. Home
  2. Data & Databases
  3. Data Transformation Functions

Unter-Tags erkunden

  • Blockchain Data TransformersLogic for converting raw on-chain data into a structured database format. **Distinct from Data Transformation Functions:** Specifically targets blockchain data conversion rather than general arithmetic/logical functions.
  • Plotting Coordinate TransformationsMathematical functions that transform data values specifically for visual mapping on a plot. **Distinct from Data Transformation Functions:** Focuses on the transformation of data for plotting coordinates rather than general-purpose arithmetic data manipulation
  • Python-Defined Transformations2 Sub-TagsData transformations defined as pure Python functions from which the execution graph is automatically derived. **Distinct from Data Transformation Functions:** Distinct from Data Transformation Functions: focuses on Python-specific definition and automatic graph derivation, not general built-in functions.
  • Recursive Processors2 Sub-TagsUtilities for executing functions across nested data structures like lists, tuples, or tensors. **Distinct from Data Transformation Functions:** Focuses on functional application across nested structures rather than defining recursive data models.
  • Text Transformation Functions3 Sub-TagsFunctions for modifying, extracting, and sampling string content. **Distinct from Data Transformation Functions:** Distinct from Data Transformation Functions: focuses on string-specific content modification.
  • Transformation Chains5 Sub-TagsSequentially applying multiple data transformation functions to a value within a single expression. **Distinct from Data Transformation Functions:** Distinct from Data Transformation Functions: focuses specifically on the sequential chaining of multiple filters rather than individual transformation logic.
  • Transformation Function Factories1 Sub-TagUtilities for creating reusable functions that retain range configurations. **Distinct from Data Transformation Functions:** Distinct from data transformation functions: focuses on the factory pattern for reusable logic.