当收到这个需求的时候,肯定也是一脸蒙,我一个前端也没写过dll
,我怎么来调用啊?做过nodejs
的同学应该能清楚它提供了这样的能力,如果是用c++
生成的dll
可能会用到ffi-napi
这个库,如果是c#
生成的dll
就会使用到edge
这个库,因为我们公司都是用c#
编写的dll
,所以我会主要介绍一下edge
,c++
调用dll
的文章可以看这篇我有好多坑都是看了这篇文章才清楚,抱拳了✊。
#找到一个空目录执行
npm init --yes
npm install edge --save
# 官网示例
var edge = require('edge');
var helloWorld = edge.func(`
async (input) => {
return ".NET Welcomes " + input.ToString();
}
`);
helloWorld('JavaScript', function (error, result) {
if (error) throw error;
console.log(result);
});
node index.js
不出意外它报错了,报错内容如下。