34 مستودعات
Compilers that translate high-level source code into executable bytecode for a virtual machine.
Distinct from Bytecode Compiled Languages: Distinct from general bytecode compiled languages: focuses on the compilation process itself rather than the language identity.
Explore 34 awesome GitHub repositories matching programming languages & runtimes · Source-to-Bytecode Compilers. Refine with filters or upvote what's useful.
pkg is a Node.js executable packager and cross-platform binary compiler. It bundles a project and its dependencies into a single standalone executable file that runs without a pre-installed runtime on the target machine. The tool uses a virtual filesystem bundler to embed project assets and native modules into a binary snapshot. It includes a bytecode obfuscator that compiles source code into bytecode to prevent the extraction of raw logic. The project supports cross-platform distribution, allowing the generation of binaries for different operating systems and architectures from a single hos
Compiles JavaScript source into binary bytecode to hide raw logic within the executable.
Clojure is a general-purpose, functional programming language hosted on the Java Virtual Machine. It is a homoiconic S-expression language that represents programs as nested data structures, allowing code to be manipulated and evaluated as data. The project provides a framework for JVM interoperability, enabling the invocation of Java methods and integration with other JVM-based languages. It distinguishes itself through a persistent data structure library that uses bitmapped vector tries to manage immutable collections and a programmatic REPL for interactive software development and real-tim
Provides a compiler that transforms high-level functional expressions into optimized Java bytecode for the JVM.
WasmEdge is an extensible WebAssembly runtime that executes WebAssembly bytecode in a secure sandbox for cloud, edge, and embedded applications. It functions as a multi-language compiler, compiling applications written in Rust, JavaScript, Go, and Python into WebAssembly bytecode for sandboxed execution, and as a server-side JavaScript runtime that runs JavaScript programs with ES6 modules, NPM packages, and Node.js-compatible APIs. The runtime also serves as an AI inference runtime, executing AI models from JavaScript using WASI-NN plug-ins for inference tasks on personal devices and edge har
Compiles applications written in Rust, JavaScript, Go, and Python into WebAssembly bytecode for sandboxed execution.
This project is an educational implementation of a relational database engine written in C. It functions as a SQLite clone, demonstrating the internal mechanics of a database system through a C-based systems project that focuses on manual memory management and file I/O. The engine is distinguished by its use of a bytecode virtual machine, which executes database operations by compiling SQL statements into low-level instructions. It utilizes a B-tree database engine to organize records in a balanced tree structure, ensuring efficient insertion, search, and range scanning. The system covers co
Translates structured SQL text into low-level executable bytecode for the virtual machine.
HackMyResume is a command-line tool that generates polished résumés and CVs in multiple formats from a single JSON or YAML data source. It validates résumé documents against the FRESH or JSON Resume schema, converts between these two formats, and produces output in HTML, Markdown, LaTeX, MS Word, PDF, plain text, JSON, XML, and YAML. The tool supports custom themes through a plugin architecture, allowing users to apply visual styling via Handlebars templates and register custom helpers for extended template logic. It can merge multiple résumé JSON files into one, overriding generic data with
Compiles a single JSON or YAML resume source into any supported output format through a centralized build process.
هذا المشروع عبارة عن بيئة برمجية ثابتة (firmware) قائمة على Lua لشريحة WiFi ESP8266، توفر مترجم Lua مدمج وإطار عمل تطوير لأجهزة WiFi SoC. يعمل كغلاف قائم على C حول Espressif non-OS SDK، مما يتيح تنفيذ نصوص برمجية غير متزامنة لإدارة الاتصالات اللاسلكية والأجهزة الطرفية. تدمج البيئة نظام ملفات فلاش SPIFFS لتخزين النصوص والبيانات الثابتة مباشرة على ذاكرة غير متطايرة. لتحسين موارد الأجهزة المحدودة، يستخدم النظام تنفيذ الفلاش في مكانه (execute-in-place)، حيث يتم تشغيل الثوابت والتعليمات للقراءة فقط مباشرة من ذاكرة الفلاش للحفاظ على ذاكرة النظام العشوائية (RAM). يغطي المشروع إدارة الاتصال اللاسلكي، وتنفيذ خدمات الشبكة، وتعيين الأجهزة الطرفية. يتضمن أدوات لتجميع البرمجيات الثابتة، وتجميع نصوص Lua إلى بايت كود، وتوليد صور نظام الملفات للنشر المستهدف.
Compiles Lua source scripts into binary bytecode images to optimize memory and CPU overhead on limited hardware.
Enso is a visual dataflow programming environment and multi-language data processing engine that compiles Enso, Python, Java, and JavaScript into a unified representation with a shared memory model for zero-overhead inter-language calls. It functions as a self-service data preparation and analysis platform where users can build data pipelines by connecting nodes in a graph, switching between a no-code visual interface and a code view while keeping all changes reviewable. The platform also serves as a cloud data workflow scheduler and API exposer, allowing workflows to run on a timetable or be
Compiles Enso, Python, Java, and JavaScript into a common representation with a unified memory model for zero-overhead interop.
Haxe is a statically typed, multi-target programming language and open-source compiler toolkit that translates a single codebase into native executables and scripts for JavaScript, C++, C#, Java, Python, Lua, PHP, and Flash targets. It provides a unified type system with automatic type inference, a compile-time macro system for code transformation and generation, conditional compilation directives, and a static analysis engine that enforces null safety and eliminates dead code to produce smaller, safer outputs. The language is supported by the HashLink virtual machine, which executes platform
Compiles Haxe source code into platform-agnostic bytecode for the HashLink virtual machine.
OCaml is a strongly typed functional language featuring a sophisticated type system and a focus on safety and expressiveness. It provides a comprehensive compiling toolchain that transforms source code into either portable bytecode or high-performance native binaries. The project is distinguished by a shared memory parallel runtime that executes computations across multiple processor cores using domains, and an algebraic effect system for managing side effects and control flow through execution context handlers. It also includes a dedicated parser generator to automatically create lexers and
Produces portable, compact bytecode that runs within an interpreter for faster compilation and cross-platform compatibility.
Spin is a WebAssembly serverless framework and development toolchain for building and running portable microservices. It functions as an event-driven orchestrator and runtime that executes WebAssembly components, allowing developers to map HTTP requests, Redis messages, and cron schedules to specific modules. The project distinguishes itself by implementing a Wasm-based AI inference gateway, enabling components to perform model inference and generate text embeddings. It utilizes the WebAssembly Component Model and WASI for language-agnostic composition and portable host interfacing, while emp
Compiles source code from multiple programming languages into WebAssembly bytecode for serverless execution.
Duktape is an embeddable JavaScript engine and portable scripting runtime designed for integration into C and C++ applications. It functions as a lightweight ECMAScript runtime that provides a C-JavaScript bridge for exchanging data and invoking functions between native code and a script execution environment. The engine includes an ECMAScript bytecode compiler that allows for the serialization and caching of compiled functions to disk to reduce application startup time. It organizes script dependencies using a CommonJS-compliant module loader. The runtime covers a variety of capabilities in
Enables the serialization of compiled function bytecode to disk to improve execution speed and startup time.
Scala 3 is an open-source, statically typed programming language that compiles to JVM bytecode, combining object-oriented and functional programming paradigms. Its core identity is defined by a sophisticated type system that includes traits, generics, union types, and a dependent object type system where types can depend on runtime values through path-dependent and singleton types. The language distinguishes itself through several advanced type-level and metaprogramming capabilities. It features a contextual abstraction mechanism using given instances and using clauses for compile-time implic
Translates Scala 3 source code into executable bytecode, enabling developers to build and run applications.
mruby is a lightweight Ruby interpreter designed to be embedded into C applications. It compiles Ruby source code into a compact, platform-independent bytecode that executes on a register-based virtual machine, and exposes a stable C API for host programs to initialize the interpreter, load bytecode, and invoke Ruby methods at runtime. The interpreter distinguishes itself through a tightly coupled parser and compiler that performs lexical analysis, syntax parsing, and bytecode generation in a single pass without constructing an intermediate AST, minimizing memory overhead. It also includes a
Compiles Ruby source files into portable bytecode that any compatible interpreter can load and run.
electron-vite is a build system and multi-process bundle orchestrator that uses Vite to compile and bundle the main, preload, and renderer processes for Electron applications. It functions as a desktop application scaffolder, providing templates to integrate various frontend frameworks into a standardized project structure. The project distinguishes itself through integrated source code protection, utilizing a V8 bytecode obfuscator to compile JavaScript into bytecode and obfuscate strings to prevent reverse engineering. It also manages complex desktop architectures by isolating bundles and s
Protects intellectual property by compiling JavaScript source code into V8 bytecode to hinder reverse engineering.
mQuickjs is a compact JavaScript engine designed for memory-constrained devices, such as microcontrollers, requiring as little as 10 KB of RAM and 100 KB of ROM. It achieves this through a fixed-buffer memory allocation scheme that avoids system heap usage, a compacting tracing garbage collector that eliminates fragmentation, and a ROM-embedded standard library that reduces both memory footprint and startup time. The engine compiles JavaScript source into portable bytecode that can be stored in persistent memory and executed without reparsing, and it emulates IEEE 754 floating-point arithmetic
Compiles JavaScript source into portable bytecode for persistent storage and execution without recompilation.
هذا المشروع عبارة عن مجموعة من الموارد التعليمية، والوثائق، وقوالب البداية المصممة للمطورين الذين يدرسون إطار عمل Flutter ولغة Dart. يوفر مجموعة شاملة من أدلة التثبيت، ودروس التكوين، والمواد المرجعية للمساعدة في بناء تطبيقات الهاتف المحمول متعددة المنصات. يتميز المستودع بمجموعة واسعة من الأمثلة العملية، بما في ذلك عروض قواعد لغة Dart، وأنماط واجهة المستخدم متعددة المنصات، وقوالب المشاريع. يوفر بشكل خاص كود عينة لتنفيذ المكونات الإضافية للمنصة الأصلية وربط ميزات العتاد باستخدام قنوات الطريقة (method channels). تغطي قاعدة الكود مجموعة واسعة من قدرات التطوير، بما في ذلك عرض واجهة المستخدم القائم على الحالة وبناء التخطيط القائم على الأدوات (widget-based). يتضمن تطبيقات لتوجيه التنقل، واستمرارية البيانات المحلية عبر SQLite والتفضيلات المشتركة، وتكاملات مستوى النظام لإشعارات الدفع ومستشعرات العتاد. يوفر المشروع أيضاً مواد لتكوين البيئة، والتحقق من أدوات التطوير، واختبار المنطق لضمان إعداد متسق عبر الأجهزة المحلية.
Explains the compilation of source code into machine-efficient bytecode to optimize application startup and execution.
Hy هو تطبيق Lisp للغة Python يسمح بكتابة صيغة Lisp التي يتم تجميعها إلى بايت كود Python. يعمل كلكنة Lisp قائمة على Python ولغة S-expression، مما يوفر وصولاً كاملاً إلى مكتبة Python القياسية والنظام البيئي. تركز اللغة على البرمجة الوصفية القائمة على الماكرو، وتتميز بنظام ماكرو يمشي في شجرة بناء الجملة المجردة (AST) وماكرو القارئ التي تسمح بتحويلات الصيغة المخصصة وقواعد التحليل. تمكن من التلاعب بشجرة بناء الجملة المجردة لتوسيع قدرات اللغة. يتضمن المشروع حلقة قراءة-تقييم-طباعة (REPL) للتطوير التفاعلي ويدعم تنفيذ النصوص البرمجية المستقلة. يغطي قدرات البرمجة الوظيفية مثل مطابقة الأنماط الهيكلية وتطوير البرامج غير المتزامنة باستخدام بنيات async وawait. يمكن ترجمة الكود المصدري إلى ملفات مصدر Python مكافئة للفحص أو التوزيع.
Compiles Lisp source code directly into Python bytecode for execution by the Python virtual machine.
Vyper هي لغة برمجة ومترجم موجه للأمان ومكتوب بنوع بيانات، مصمم لإنشاء عقود ذكية تعمل على Ethereum Virtual Machine. تستخدم صيغة Pythonic لتحديد منطق الحالة والعقد، وتعمل كهدف للتحقق الرسمي للسماح ببراهين صحة مفحوصة آلياً. تتميز اللغة بقيود معمارية صارمة تعطي الأولوية للقدرة على التنبؤ والأمان. تفرض رسوم بيانية للاستدعاء غير دورية عن طريق حظر العودية وتفرض حلقات محدودة لضمان التنبؤ الثابت بالغاز. بالإضافة إلى ذلك، تتميز بنوع عشري ثابت النقطة أصلي للحسابات المالية لمنع فقدان الدقة. يوفر المشروع مجموعة شاملة من القدرات لتطوير البلوكشين، بما في ذلك إدارة الحالة المكتوبة بقوة، والأوليات المشفرة لاستعادة المفتاح العام، وحراس إعادة الدخول المدمجين. يدعم تنفيذ معايير الرموز الصناعية، وأدوات التمويل اللامركزي، وأنظمة الحوكمة على السلسلة من خلال نظام معياري للواجهات ونشر العقود. يقوم المترجم بتحويل الكود المصدري عالي المستوى إلى بايت كود مستهدف لـ EVM وتعريفات ABI، مع توفير أدوات لاختبار العقود الآلي والتحقق من سلامة البناء.
Compiles high-level typed source code into EVM-compatible bytecode for execution on the Ethereum Virtual Machine.
Maven هي أداة لأتمتة بناء مشاريع Java ومنسق لبناء البرمجيات. تعمل كمدير لدورة حياة المشروع ونظام لإدارة التبعيات، باستخدام نموذج كائن مشروع موحد لتجميع واختبار وتغليف مشاريع Java. يتميز المشروع بدورة حياة بناء قائمة على المراحل ونموذج توسعة قائم على الإضافات، مما يسمح للمستخدمين بربط أهداف مخصصة بمراحل بناء محددة. ينسق البرمجيات المعقدة من خلال إدارة المشاريع متعددة الوحدات ويضمن سير عمل بناء قابل للتكرار عن طريق تحييد متغيرات البيئة والتحكم في إصدارات سلسلة الأدوات. تغطي إمكانياته إدارة شاملة للتبعيات، بما في ذلك حل التبعيات المتعدية ونشر القطع البرمجية (artifacts) إلى مستودعات بعيدة. يوفر النظام أيضاً إنشاء المشاريع من خلال القوالب وإنشاء وثائق مفصلة لإنتاج مراجع واجهات برمجة التطبيقات ومواقع المشاريع. تتضمن الأداة واجهة سطر أوامر مع إكمال المدخلات وتدعم تنفيذ البناء دون اتصال باستخدام ذاكرة تخزين مؤقت محلية للقطع البرمجية.
Transforms Java source code into executable bytecode using standard directory conventions.
Pyarmor هي مجموعة أدوات لحماية برمجيات Python من خلال تعمية الكود المصدري (obfuscation)، وحماية البايت كود، والتجميع الثنائي. تعمل كأداة تعمية للكود، وحماية للبايت كود، ومجمع ثنائي مصمم لمنع الهندسة العكسية والوصول غير المصرح به إلى نصوص وحزم Python. يتميز المشروع بتوفير مدير تراخيص برمجيات شامل يتيح الترخيص المرتبط بالأجهزة. يسمح هذا للمطورين بقفل تنفيذ النص البرمجي على أجهزة مادية أو أجهزة افتراضية محددة وفرض تواريخ انتهاء صلاحية صارمة عبر مفاتيح تشغيل مشفرة. تغطي إمكانياته الأوسع التوزيع الآمن من خلال توليد ملفات wheel معماة وملفات تنفيذية مستقلة لمنصات متعددة. تشمل مساحة الأمان فحوصات سلامة وقت التشغيل، مثل منع إرفاق مصحح الأخطاء، والحماية على مستوى الذاكرة، وتحويل وظائف Python إلى امتدادات C مجمعة. تتضمن الأداة واجهة سطر أوامر وتدعم التكامل في خطوط أنابيب التكامل المستمر (CI) لأتمتة عملية التعمية أثناء البناء.
Transforms Python bytecode into a complex format to prevent static analysis and reverse engineering.