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

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

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

5 个仓库

Awesome GitHub RepositoriesCompiled Script Loadings

Loads compiled AngelScript bytecode from a custom binary format for execution.

Distinct from Script Compilation: Distinct from Script Compilation: focuses on loading pre-compiled bytecode, not the compilation process itself.

Explore 5 awesome GitHub repositories matching development tools & productivity · Compiled Script Loadings. Refine with filters or upvote what's useful.

Awesome Compiled Script Loadings GitHub Repositories

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

    wbthomason/packer.nvim

    8,093在 GitHub 上查看↗

    packer.nvim is a declarative plugin manager for Neovim that uses the editor's native package system to install, update, and remove plugins. It functions as a lazy loading orchestrator, a Lua package manager for Luarocks dependencies, and an environment snapshot tool for saving and restoring plugin states to enable version rollbacks. The project optimizes editor startup by compiling loading rules and deferring plugin initialization until specific triggers, such as commands or filetypes, occur. It ensures environment stability through dependency-graph resolution and loading order control. The

    Generates static Lua files with optimized loading sequences to accelerate editor startup by bypassing manager logic.

    Lualuaneovimneovim-plugin
    在 GitHub 上查看↗8,093
  • zdharma-continuum/zinitzdharma-continuum 的头像

    zdharma-continuum/zinit

    4,731在 GitHub 上查看↗

    Zinit 是一个 Zsh 插件管理器,用于下载、加载和更新 Z shell 的扩展和代码片段。它充当性能优化器、Shell 二进制安装器和补全管理器,为 Shell 生命周期自动化和 Tab 补全定义注册提供了一个框架。 该项目通过字节码编译、配置缓存和延迟加载等高级启动优化技术脱颖而出,显著缩短了 Shell 启动时间。它还通过支持在无需完整仓库安装的情况下加载远程代码片段,以及利用 Shell 模拟层确保与非原生语法的兼容性,从而优化了插件执行模型。 该管理器的更广泛能力包括通过安装钩子(hooks)实现插件生命周期自动化、将编译后的二进制文件部署到专用前缀目录,以及根据环境条件动态激活插件。它还提供了使用命名管道管理后台服务、监控插件活动以及执行加载性能分析的工具。

    Converts source files into byte-code to increase execution speed and reduce asset loading time.

    Shell
    在 GitHub 上查看↗4,731
  • urho3d/urho3durho3d 的头像

    urho3d/urho3d

    4,707在 GitHub 上查看↗

    Urho3D is a cross-platform 3D game engine written in C++. It uses a component-based scene graph to compose game objects from nodes and attached components, separating transforms from behaviors for modular design. The engine integrates AngelScript and Lua scripting for game logic, uses the Bullet library for physics simulation, and renders scenes with OpenGL or Direct3D through forward, deferred, or light pre-pass pipelines with customizable render passes and shadow mapping. The engine distinguishes itself with a built-in visual scene and UI editor for composing 3D worlds and interface layouts

    Loads pre-compiled AngelScript bytecode from a custom binary format for faster execution.

    C++2d3d3d-graphics
    在 GitHub 上查看↗4,707
  • zimfw/zimfwzimfw 的头像

    zimfw/zimfw

    4,632在 GitHub 上查看↗

    zimfw 是一个 Zsh 配置框架和插件管理器,旨在自定义和优化 Zsh Shell 环境。它作为一个系统,用于安装、更新和固定来自远程或本地仓库的 Shell 扩展和主题。 该框架通过使用脚本的字节码编译来减少启动时间并提高执行速度,从而专注于 Shell 性能。它采用模块管理的声明式配置模型,允许进行版本固定的依赖解析,并具备在不进行完整 git 克隆的情况下获取模块的能力,以加速安装。 该项目提供了管理 Shell 扩展、应用视觉主题以及通过实时元数据增强命令提示符的功能。它还包括对跨不同操作系统自动化包管理和简化 git 仓库操作的集成支持。

    Transforms shell scripts into bytecode to significantly reduce shell startup latency and improve execution speed.

    Shell
    在 GitHub 上查看↗4,632
  • eriner/zimEriner 的头像

    Eriner/zim

    4,632在 GitHub 上查看↗

    Zim 是一个 Zsh 配置框架和环境管理器,旨在优化 Shell 性能和生产力。它作为插件管理器、提示符自定义器和性能优化器,将主题和模块捆绑到一个有机的系统中。 该框架的特色在于使用字节码编译来加速 Shell 启动时间并提高执行速度。它采用模块化系统来安装、更新和同步来自本地或远程源的外部 Shell 模块和脚本。 该项目涵盖了广泛的功能,包括通过 Git 集成实现开发者工作流自动化、诸如简写别名和 Tab 补全系统等命令行生产力工具,以及针对 Homebrew 和 Pacman 等工具的系统包管理。它还提供提示符工程工具,用于注入实时元数据并为界面应用视觉主题。 该环境通过一个中央配置文件进行管理,该文件定义了插件生命周期和基于检测到的操作系统的条件初始化逻辑。

    Accelerates shell startup and execution speed by compiling scripts into bytecode.

    Shell
    在 GitHub 上查看↗4,632
  1. Home
  2. Development Tools & Productivity
  3. Compilers & Toolchains
  4. Compilers
  5. Script Compilation
  6. Compiled Script Loadings

探索子标签

  • Optimized Loading SequencesGeneration of static files containing pre-calculated loading orders to bypass runtime logic. **Distinct from Compiled Script Loadings:** Focuses on the generation of an optimized loading sequence file rather than just loading pre-compiled bytecode.
  • Shell Bytecode CompilationConverts shell scripts into bytecode to increase execution speed and reduce asset loading time. **Distinct from Compiled Script Loadings:** Specifically converts shell scripts to bytecode for runtime speed, whereas the parent focuses on loading existing bytecode.