Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@yuuang/ffi-rs-darwin-x64
Advanced tools
A module written in Rust and N-APi provides interface (FFI) features for Node.js
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.
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:
For below c++ code, we compile this file into a dynamic library
extern "C" int sum(int a, int b) { return a + b; }
extern "C" const char *concatenateStrings(const char *str1, const char *str2) {
std::string result = std::string(str1) + std::string(str2);
char *cstr = new char[result.length() + 1];
strcpy(cstr, result.c_str());
return cstr;
}
$ g++ -dynamiclib -o libsum.so cpp/sum.cpp # macos
$ g++ -shared -o libsum.so cpp/sum.cpp # linux
$ g++ -shared -o sum.dll cpp/sum.cpp # win
Then can use ffi-rs
invoke the dynamic library file contains functions.
const { equal } = require('assert')
const { load, RetType, ParamsType } = require('ffi-rs')
const a = 1
const b = 100
const r = load({
library: "./libsum.so", // path to the dynamic library file
funcName: 'sum', // the name of the function to call
retType: RetType.I32, // the return value type
paramsType: [ParamsType.I32, ParamsType.I32], // the parameter types
paramsValue: [a, b] // the actual parameter values
})
equal(r, a + b)
const c = "foo"
const d = "bar"
equal(c + d, load({
library: "./libsum.so",
funcName: 'concatenateStrings',
retType: ParamsType.String,
paramsType: [ParamsType.String, ParamsType.String],
paramsValue: [c, d]
}))
FAQs
English | 简体中文
The npm package @yuuang/ffi-rs-darwin-x64 receives a total of 9,966 weekly downloads. As such, @yuuang/ffi-rs-darwin-x64 popularity was classified as popular.
We found that @yuuang/ffi-rs-darwin-x64 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.