1 रिपॉजिटरी
Capabilities for loading and executing functions from shared objects or DLLs at runtime.
Distinct from Dynamic Function Mappings: None of the candidates cover the general process of loading and invoking functions from external native dynamic libraries; they focus on WebAssembly, LLMs, or UI injection.
Explore 1 awesome GitHub repository matching operating systems & systems programming · Dynamic Library Function Executions. Refine with filters or upvote what's useful.
node-ffi is a foreign function interface library for Node.js that enables calling functions from native C dynamic libraries without writing manual C++ bindings. It serves as a system for loading shared objects and DLLs into process memory, translating JavaScript values into binary representations, and executing external binaries at runtime. The project utilizes a wrapper around the libffi library to construct call frames and execute native functions with dynamic arguments. It distinguishes itself by providing a native memory manager for allocating raw pointers and a mapping system that connec
Provides the core ability to load external shared objects and execute native C functions directly from JavaScript.