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

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

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

6 مستودعات

Awesome GitHub RepositoriesModule Transformation Pipelines

Systems for processing and converting module content through custom loaders or plugin-based transformation logic.

Distinguishing note: Focuses on the transformation of file content rather than the orchestration of the build process itself.

Explore 6 awesome GitHub repositories matching development tools & productivity · Module Transformation Pipelines. Refine with filters or upvote what's useful.

Awesome Module Transformation Pipelines GitHub Repositories

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

    evanw/esbuild

    39,934عرض على GitHub↗

    esbuild is a high-performance JavaScript bundler and transpiler designed to transform modern web assets into production-ready code. Built with a focus on speed, it utilizes a concurrent execution model to perform parsing, linking, and code generation across multiple CPU cores. The engine handles a wide range of tasks, including TypeScript compilation, JSX transformation, and CSS bundling, while maintaining a consistent build process across diverse environments. What distinguishes the project is its architecture, which leverages memory-mapped file processing and a single-pass transformation st

    The bundler allows plugins to read files or generate code to transform module contents, and specify how the bundler should interpret the resulting data using custom loaders.

    Gobundlercommonjscompiler
    عرض على GitHub↗39,934
  • vitest-dev/vitestالصورة الرمزية لـ vitest-dev

    vitest-dev/vitest

    15,970عرض على GitHub↗

    Vitest is a high-performance testing framework designed for JavaScript and TypeScript applications. It provides an integrated environment that supports unit, integration, and browser-based testing, allowing developers to execute test suites natively without requiring separate build steps or complex configuration. The project distinguishes itself through a highly optimized execution model that leverages worker-thread isolation and on-demand module transformation to provide rapid feedback. It includes a comprehensive suite of mocking and spying utilities that allow for the interception of depen

    Stores processed code files on the local disk to speed up repeated test runs by skipping redundant re-parsing.

    TypeScripttesttesting-toolsvite
    عرض على GitHub↗15,970
  • foundry-rs/foundryالصورة الرمزية لـ foundry-rs

    foundry-rs/foundry

    10,125عرض على GitHub↗

    Foundry is an Ethereum smart contract development toolkit and blockchain simulator designed for compiling, testing, and deploying contracts for the Ethereum Virtual Machine. It provides a local environment for simulating blockchain state and forking live networks to execute code without modifying the actual chain. The project features a property-based fuzzing engine to identify edge-case failures in contract logic and a transaction debugger for analyzing detailed execution traces and gas consumption. It enables developers to mirror the state of a remote chain locally to test against real-worl

    Implements persistent storage of processed module artifacts to accelerate subsequent compilation and test runs.

    Rustalloyblockchainbytecode
    عرض على GitHub↗10,125
  • vuejs-templates/webpackالصورة الرمزية لـ vuejs-templates

    vuejs-templates/webpack

    9,644عرض على GitHub↗

    This project is a pre-configured build template for Vue.js applications using Webpack. It provides a structured project boilerplate and a frontend build pipeline designed to bootstrap development environments and compile application code into distributable bundles. The template includes a development environment with hot module replacement, error overlays, and source maps to allow for instant updates in the browser without losing application state. It also features a project generator that establishes folder structures and configurations for routing, linting, and testing. The build system co

    Employs a transformation pipeline to process non-JavaScript files into valid modules using pluggable loaders.

    JavaScript
    عرض على GitHub↗9,644
  • elasticsearch-dump/elasticsearch-dumpالصورة الرمزية لـ elasticsearch-dump

    elasticsearch-dump/elasticsearch-dump

    7,932عرض على GitHub↗

    elasticsearch-dump is a command-line tool for importing and exporting data, mappings, and settings between Elasticsearch and OpenSearch clusters. It serves as a backup and restore system, a data transfer utility for cross-cluster migrations, and a bridge for streaming search index data to and from S3-compatible storage. The tool functions as a JSON index data transformer, allowing the use of custom JavaScript modules to modify or anonymize documents in flight during the migration process. It also enables the creation of search bodies using external JavaScript templates to customize the data b

    Provides custom JavaScript modules to modify or anonymize documents on the fly as they move between source and destination.

    JavaScriptbackupdockerelasticdump
    عرض على GitHub↗7,932
  • farm-fe/farmالصورة الرمزية لـ farm-fe

    farm-fe/farm

    5,580عرض على GitHub↗

    Farm is a Rust-based web build tool and development server that compiles JavaScript, TypeScript, CSS, HTML, and static assets into optimized bundles. It uses a module-graph-based bundling approach with persistent module-level caching, enabling near-instant builds and sub-20ms hot module replacement during development. The tool processes assets based on file extensions, handling CSS, Sass, Less, PostCSS, HTML, and images as first-class modules without requiring JavaScript transformation. Farm distinguishes itself through its Vite-compatible plugin system, accepting Vite, Rollup, and Unplugin p

    Transforms module content like Sass to CSS through plugin-based loaders during the build pipeline.

    Rustbuild-toolbundlercompiler
    عرض على GitHub↗5,580
  1. Home
  2. Development Tools & Productivity
  3. Module Transformation Pipelines

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

  • Custom AST ParsersSystems that convert transformed module content into abstract syntax trees for module types not natively supported. **Distinct from Module Transformation Pipelines:** Distinct from Module Transformation Pipelines: focuses on parsing transformed content into ASTs, not general content transformation.
  • Document Transformation ModulesCustomizable modules for modifying data documents as they flow through a pipeline. **Distinct from Module Transformation Pipelines:** Distinct from Module Transformation Pipelines: focuses on modifying the data documents themselves rather than transforming the code modules.
  • Transformation CachingPersistent storage of processed module artifacts to accelerate subsequent test runs. **Distinct from Module Transformation Pipelines:** Distinct from general transformation pipelines: focuses on the caching layer for build artifacts.