awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesDistribution Module Compilation

Compilation of source code into optimized JavaScript modules for various target environments.

Distinct from Source Code Compilers: Focuses on preparing library distributions for diverse runtimes rather than general-purpose machine code compilation.

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Distribution Module Compilation. Refine with filters or upvote what's useful.

Awesome Distribution Module Compilation GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • ramda/ramdaramda 的头像

    ramda/ramda

    24,072在 GitHub 上查看↗

    Ramda is a functional JavaScript standard library and toolset for immutable data transformation and composition. It provides a comprehensive suite of pure utility functions designed to enable declarative data processing pipelines. The library is distinguished by its use of automatic function currying and a data-last argument order. These design patterns allow multi-argument functions to be partially applied, simplifying the construction of processing chains where data is passed through a sequence of operations. The toolkit covers broad data manipulation capabilities, including list processin

    Compiles source code into optimized modules compatible with different JavaScript target environments.

    JavaScriptjavascriptramda
    在 GitHub 上查看↗24,072
  • microsoft/nniMicrosoft 的头像

    Microsoft/nni

    14,351在 GitHub 上查看↗

    NNI is an AutoML toolkit designed to automate machine learning lifecycles. It functions as a hyperparameter optimization framework, a neural architecture search tool, and a model compression suite. The project provides a distributed training orchestrator to manage machine learning workloads across local machines, remote servers, and cloud platforms. It enables the discovery of efficient model structures through reinforcement learning and one-shot optimization methods, while utilizing Bayesian and evolutionary algorithms to automate hyperparameter tuning. Additional capabilities include tools

    Compiles source modules into optimized JavaScript for distribution across different target environments.

    Python
    在 GitHub 上查看↗14,351
  • olado/dotolado 的头像

    olado/doT

    5,043在 GitHub 上查看↗

    doT 是一个编译型 JavaScript 模板引擎和渲染系统,用于为浏览器端界面和 Node.js 服务端环境生成动态文本和 HTML。它将模板字符串转换为可执行的 JavaScript 函数,以在不同运行时环境中产生文本输出。 该系统专注于在构建时将模板源文件预编译为独立的 JavaScript 模块。此过程消除了运行时编译开销,提高了执行速度,并防止了恶意代码注入。 该引擎支持使用条件语句和数组迭代器的逻辑插值,以及创建可复用的局部模板(partials)和宏。其他能力包括空格控制、自定义分隔符配置以及自动将目录结构映射到模板标识符的能力。

    Pre-compiles template sources into standalone JavaScript modules to eliminate runtime compilation overhead and increase security.

    JavaScript
    在 GitHub 上查看↗5,043
  1. Home
  2. Programming Languages & Runtimes
  3. Source Code Compilers
  4. Distribution Module Compilation

探索子标签

  • Pre-Compiled Template ModulesConversion of template sources into standalone JavaScript modules to eliminate runtime compilation overhead. **Distinct from Distribution Module Compilation:** Specifically targets templates being compiled into JS modules, whereas the parent is for general distribution module compilation.