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)的主要内容,如果未能解决你的问题,请参考以下文章