安装依赖

npm install --global --production windows-build-tools(在管理员权限打开的命令行中执行)
npm install -g node-gyp //依赖python2.7,包含在windows-build-tools中

安装 node-ffi

npm install ffi

 

安装ref

npm install ref
'use strict';
const path = require('path');
let ffi = require('ffi');
let mydll = path.join(__dirname, '../dll/helloworld.dll');
let dll= ffi.Library(mydll, {
    'helloworld': ['int', ['int']]
});

console.log(dll.helloworld(1));//关闭 RLM 通信端口
posted on 2019-06-24 14:17  肖建锋  阅读(2489)  评论(0编辑  收藏  举报