当我尝试测试nodejs N-API模块时,我有一个错误:
我的addon.c文件是:
#include <node_api.h>
napi_value HelloMethod (napi_env env, napi_callback_info info) {
napi_value world;
napi_create_string_utf8(env, "world", 5, &world);
return world;
}
void Init (napi_env env, napi_value exports, napi_value module, void* priv) {
napi_property_descriptor desc = { "hello", 0, HelloMethod, 0, 0, 0, napi_default, 0 };
napi_define_properties(env, exports, 1, &desc);
}
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
我的binding.gyp文件是:
{
"targets": [
{
"target_name": "addon",
"source": ["addon.c"]
}
]
}
当我使用require(&#39; ./ build / Release / addon&#39;)来调用addon模块时,错误信息为:
Error: Module did not self-register.
at Object.Module._extensions..node (internal/modules/cjs/loader.js:707:18)
at Module.load (internal/modules/cjs/loader.js:589:32)
at tryModuleLoad (internal/modules/cjs/loader.js:528:12)
at Function.Module._load (internal/modules/cjs/loader.js:520:3)
at Module.require (internal/modules/cjs/loader.js:626:17)
at require (internal/modules/cjs/helpers.js:20:18)
有人可以帮助我吗?罐
答案 0 :(得分:0)
似乎node-addon-api
的较新版本已更改了其用于模块注册/导出的API。您正在使用的数据类型也将不再起作用。
现在完成了
#include <napi.h>
Napi::String HelloMethod(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
return Napi::String::New(env, "world");
}
Napi::Object Init(Napi::Env env, Napi::Object exports) {
exports.Set(Napi::String::New(env, "hello"),
Napi::Function::New(env, HelloMethod));
return exports;
}
NODE_API_MODULE(addon, Init)
这适用于节点11.10.1和node-addon-api 1.6.2。
答案 1 :(得分:0)
尝试将文件名“ addon.c”更改为“ addon.cpp”,然后重新生成并运行。
查看此内容:Successful compiling the Node module and "Module did not self-register."