Created
April 27, 2020 13:46
-
-
Save NickNaso/11872f18a3e1db1139aa9d6e5a0c8e75 to your computer and use it in GitHub Desktop.
N-API register module (the new way)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"targets": [ | |
{ | |
"target_name": "hello", | |
"sources": [ "hello.cc" ] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
const addon = require('bindings')('hello'); | |
console.log(addon.hello()); // 'world' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <assert.h> | |
#include <node_api.h> | |
napi_value Method(napi_env env, napi_callback_info info) { | |
napi_status status; | |
napi_value world; | |
status = napi_create_string_utf8(env, "world", 5, &world); | |
assert(status == napi_ok); | |
return world; | |
} | |
#define DECLARE_NAPI_METHOD(name, func) \ | |
{ name, 0, func, 0, 0, 0, napi_default, 0 } | |
extern "C" { | |
napi_value napi_register_module_v1(napi_env env, napi_value exports) { | |
napi_status status; | |
napi_property_descriptor desc = DECLARE_NAPI_METHOD("hello", Method); | |
status = napi_define_properties(env, exports, 1, &desc); | |
assert(status == napi_ok); | |
return exports; | |
} | |
} | |
//NAPI_MODULE(NODE_GYP_MODULE_NAME, Init) |
Author
NickNaso
commented
Apr 27, 2020
In WIndows you need to add __declspec(dllexport)
like reported below:
#include <assert.h>
#include <node_api.h>
napi_value Method(napi_env env, napi_callback_info info) {
napi_status status;
napi_value world;
status = napi_create_string_utf8(env, "world", 5, &world);
assert(status == napi_ok);
return world;
}
#define DECLARE_NAPI_METHOD(name, func) \
{ name, 0, func, 0, 0, 0, napi_default, 0 }
extern "C" {
napi_value __declspec(dllexport) napi_register_module_v1(napi_env env, napi_value exports) {
napi_status status;
napi_property_descriptor desc = DECLARE_NAPI_METHOD("hello", Method);
status = napi_define_properties(env, exports, 1, &desc);
assert(status == napi_ok);
return exports;
}
}
//NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
for msys2/mingw you have to use
g++ -shared -fPIC hello.cc -lnode -o hello.node
and #include <node/node_api.h>
instead of just node_api.h
then test:
echo "console.log(require('./hello.node').hello())" | node -
@Kreijstal thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment