Socket
Socket
Sign inDemoInstall

node-ffi-rs

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ffi-rs

A module written in Rust and N-APi provides interface (FFI) features for Node.js


Version published
Weekly downloads
96
decreased by-25%
Maintainers
1
Weekly downloads
 
Created
Source

ffi-rs

English | 简体中文

A module written in Rust and N-APi provides interface (FFI) features for Node.js

Description

ffi-rs is a module written in Rust and N-API that provides FFI (Foreign Function Interface) features for Node.js. It allows developers to call functions written in other languages such as C++, C, and Rust directly from JavaScript without writing any C++ code.

This module aims to provide similar functionality to the node-ffi module, but with a completely rewritten underlying codebase. The node-ffi module has been unmaintained for several years and is no longer usable, which is why ffi-rs was developed.

Usage

Currently, ffi-rs only supports two types of parameters and return values: strings and numbers. However, support for more types will be added in the future based on actual usage scenarios.

Here is an example of how to use ffi-rs:

export const enum RetType {
  String = 0,
  I32 = 1
}
export const enum ParamsType {
  String = 0,
  I32 = 1
}

const p = require('ffi-rs')
const r = p.load({
  library: "/usr/libsum.so", // path to the dynamic library file
  funcName: 'sum', // the name of the function to call
  retType: 1, // the return value type
  paramsType: [1, 1], // the parameter types
  paramsValue: [-99, 2] // the actual parameter values
})

console.log('result', r)

FAQs

Package last updated on 07 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc