awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

Awesome GitHub RepositoriesFunction Exports

Mechanisms for exposing Rust functions to be callable from external runtimes.

Distinct from Rust: Focuses on the act of exporting functions for FFI, not general Rust language resources.

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

Awesome Function Exports GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • rustwasm/wasm-bindgenAvatar rustwasm

    rustwasm/wasm-bindgen

    9,057Vezi pe GitHub↗

    wasm-bindgen este un generator de binding-uri și un strat de interop conceput pentru a mapa tipurile de date și funcțiile peste granița dintre WebAssembly și JavaScript. Funcționează ca o interfață de funcții străine (FFI) care sintetizează boilerplate-ul necesar pentru a permite comunicarea bidirecțională între Rust și runtime-ul browserului. Proiectul generează cod glue și wrapper-e care automatizează conversia tipurilor complexe, permițând funcțiilor Rust să fie exportate ca module JavaScript și API-urilor browserului să fie importate în Rust. Utilizează macro-uri procedurale pentru a defini aceste interfețe și sintetizează binding-urile bazate pe definițiile de tip Rust. Sistemul gestionează memoria prin transmiterea pointerilor în memoria liniară și gestionează schimbul de resurse folosind handle-uri de memorie gestionate de JavaScript. Se bazează pe o convenție de apelare compatibilă cu C ABI pentru a transmite numere întregi primitive și float-uri între modul și host.

    Exposes Rust functions and types as modules that can be called by the JavaScript runtime.

    Rust
    Vezi pe GitHub↗9,057
  • neon-bindings/neonAvatar neon-bindings

    neon-bindings/neon

    8,410Vezi pe GitHub↗

    Neon is a framework for writing high-performance native Node.js modules using the Rust programming language. It serves as a foreign function interface bridge and a toolchain for bootstrapping, compiling, and managing Rust-based extensions. The project provides a cross-language memory manager that handles buffers and object borrowing to ensure safe memory access between Rust and JavaScript. It enables the mapping of data types and function calls across the language boundary, allowing Rust functions to be exported to the script environment and JavaScript functions to be called from Rust. The f

    Exports Rust functions to the JavaScript environment so they can be executed as native modules.

    Rust
    Vezi pe GitHub↗8,410
  • extism/extismAvatar extism

    extism/extism

    5,657Vezi pe GitHub↗

    Extism is a cross-language WebAssembly plugin framework that lets applications written in any programming language load and execute plugins written in any other language. It provides a universal plugin system where host applications use idiomatic SDKs to load WebAssembly modules, call exported functions, and pass data back and forth, while plugin authors use development kits that handle memory management and host interaction so they can focus on business logic. The framework distinguishes itself through its comprehensive approach to cross-language integration, offering schema-driven binding g

    Exposes named functions from WebAssembly modules so the host can invoke them with input and receive return values.

    Rustbrowserccpp
    Vezi pe GitHub↗5,657
  1. Home
  2. Programming Languages & Runtimes
  3. Programming Language Varieties
  4. Programming Languages
  5. Systems & Low-Level
  6. Rust
  7. Function Exports

Explorează sub-etichetele

  • AsynchronousMechanisms for exporting functions marked as asynchronous to generate non-blocking calls in target languages. **Distinct from Function Exports:** Specifically targets the generation of non-blocking async patterns in foreign languages, not just general FFI exports.
  • WebAssemblyExposes named functions from WebAssembly modules so the host can invoke them with input and receive return values. **Distinct from Function Exports:** Distinct from Function Exports: specifically targets WebAssembly module exports rather than general Rust FFI exports.