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

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • rustwasm/wasm-bindgenAvatar de rustwasm

    rustwasm/wasm-bindgen

    9,057Ver en GitHub↗

    wasm-bindgen es un generador de bindings y capa de interoperabilidad diseñada para mapear tipos de datos y funciones a través del límite entre WebAssembly y JavaScript. Funciona como una interfaz de función extranjera que sintetiza el boilerplate necesario para permitir la comunicación bidireccional entre Rust y el runtime del navegador. El proyecto genera código de pegamento y envoltorios que automatizan la conversión de tipos complejos, permitiendo que las funciones de Rust se exporten como módulos de JavaScript y que las APIs del navegador se importen a Rust. Utiliza macros procedimentales para definir estas interfaces y sintetiza bindings basados en definiciones de tipos de Rust. El sistema gestiona la memoria a través del paso de punteros de memoria lineal y maneja el intercambio de recursos utilizando manejadores de memoria gestionados por JavaScript. Se basa en una convención de llamada compatible con la ABI de C para pasar enteros primitivos y flotantes entre el módulo y el host.

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

    Rust
    Ver en GitHub↗9,057
  • neon-bindings/neonAvatar de neon-bindings

    neon-bindings/neon

    8,410Ver en 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
    Ver en GitHub↗8,410
  • extism/extismAvatar de extism

    extism/extism

    5,657Ver en 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
    Ver en 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

Explorar subetiquetas

  • 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.