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

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

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

4 مستودعات

Awesome GitHub RepositoriesEmbedded JavaScript Interpreters

Embeds a lightweight JavaScript interpreter that supports ES6 modules, NPM packages, and Node.js-compatible APIs.

Distinct from JavaScript Engines: Distinct from JavaScript Engines: focuses on embedding a specific lightweight interpreter (QuickJS) within a runtime, not general JS engine implementations.

Explore 4 awesome GitHub repositories matching programming languages & runtimes · Embedded JavaScript Interpreters. Refine with filters or upvote what's useful.

Awesome Embedded JavaScript Interpreters GitHub Repositories

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

    facebook/prepack

    14,118عرض على GitHub↗

    Prepack is a build-time transformation tool and static analysis engine designed to optimize JavaScript source code. By executing code during the build process, it evaluates program logic and state to precompute results, effectively simplifying complex operations before the application is deployed. The tool functions as a bundle optimizer that integrates into existing development pipelines to refine application logic. It employs abstract interpretation and symbolic execution to track program behavior across various paths, allowing it to perform constant folding, eliminate unreachable code, and

    Executes source code during the build process to determine the final state and effects of the program.

    JavaScript
    عرض على GitHub↗14,118
  • wasmedge/wasmedgeالصورة الرمزية لـ WasmEdge

    WasmEdge/WasmEdge

    10,665عرض على GitHub↗

    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

    Embeds a lightweight JavaScript interpreter that supports ES6 modules, NPM packages, and Node.js-compatible APIs.

    C++artificial-intelligencecloudcloud-native
    عرض على GitHub↗10,665
  • awslabs/llrtالصورة الرمزية لـ awslabs

    awslabs/llrt

    8,752عرض على GitHub↗

    llrt is a low-latency JavaScript runtime based on the QuickJS engine, specifically designed for executing asynchronous functions in serverless environments. It provides a lightweight execution layer optimized for fast startup times and minimal memory usage when running ES2023 workloads. The project differentiates itself by bundling natively optimized cloud service SDKs directly into the runtime binary to eliminate external dependency loading. To further reduce cold start latency, it implements parallel connection warming for TLS and network handshakes during the startup phase. The runtime co

    Utilizes an embedded QuickJS interpreter to provide a high-performance, small-footprint environment.

    Rust
    عرض على GitHub↗8,752
  • pr3y/bruceالصورة الرمزية لـ pr3y

    pr3y/Bruce

    5,985عرض على GitHub↗

    Bruce هو برنامج ثابت (firmware) للأمن الهجومي لأجهزة ESP32 مصمم لهجمات الشبكة، وتحليل الراديو، وانتحال الهوية القائم على الأجهزة. يوفر مجموعة أدوات متخصصة لإجراء عمليات الفريق الأحمر، بما في ذلك أداة اختبار اختراق WiFi، ومجموعة أدوات راديو متعددة البروتوكولات، ونظام لمحاكاة لوحات مفاتيح وفئران USB لحقن الحمولات. يتميز البرنامج الثابت بمجموعة واسعة من قدرات معالجة الإشارات، مما يسمح باستنساخ وكتابة علامات RFID وإرسال طلبات اقتران تخريبية إلى أجهزة Bluetooth. كما يتضمن نظام راديو متعدد البروتوكولات قادر على تحليل وتشويش وإرسال الإشارات عبر ترددات Sub-GHz وFM والأشعة تحت الحمراء. يغطي المشروع مساحة واسعة من قدرات اختبار الأمان، بما في ذلك مجموعات هجمات الشبكة اللاسلكية لإلغاء المصادقة وإرسال رسائل البريد العشوائي، بالإضافة إلى نشر بوابات مقيدة لاعتراض حركة المرور. كما يدمج محاكاة USB HID لإدخال ضغطات المفاتيح وحركة الفأرة آلياً، وتتبع الموقع عبر GPS، وواجهة إدارة عن بعد قائمة على الويب لإدارة الأجهزة. يتضمن النظام مترجماً لـ JavaScript مدمجاً لتنفيذ نصوص برمجية مخصصة للأتمتة ويستخدم نظام ملفات صديقاً للذاكرة الفلاشية لإدارة الملفات والنصوص عبر الذاكرة الفلاشية الداخلية وبطاقات SD الخارجية.

    Integrates a lightweight JavaScript interpreter for executing dynamic automation scripts on the microcontroller.

    C++
    عرض على GitHub↗5,985
  1. Home
  2. Programming Languages & Runtimes
  3. JavaScript Engines
  4. Embedded JavaScript Interpreters

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

  • Build-Time InterpretersEngines that execute code during the build process to determine program state and effects. **Distinct from Embedded JavaScript Interpreters:** Distinct from Embedded JavaScript Interpreters: focuses on build-time execution for optimization purposes rather than embedding an interpreter for runtime use.