nodejs ffi(DLL)

Posted 程序之家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs ffi(DLL)相关的知识,希望对你有一定的参考价值。

npm install ffi

Error: The specified module could not be found.

npm rebuild

 

var ffi = require(‘ffi‘);
var Test = ffi.Library(‘user32.dll‘,{
‘MessageBoxA‘: [‘int‘,[‘int‘,‘string‘,‘string‘,‘int‘]]
});
Test.MessageBoxA(0,‘123‘,‘456‘,0);

  

以上是关于nodejs ffi(DLL)的主要内容,如果未能解决你的问题,请参考以下文章

electron之node原生模块ffi的使用

electron ffi 可以调用啥样的dll

Packet.dll 获取 MAC 地址 (JNR-FFI)

nodejs调用C++动态链接库

Nodejs使用ffi调用so库

Nodejs使用ffi调用so库