mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
615 B
25 lines
615 B
#include <node_api.h>
|
|
#include "../common.h"
|
|
|
|
napi_value MyFunction(napi_env env, napi_callback_info info) {
|
|
napi_value str;
|
|
NAPI_CALL(env, napi_create_string_utf8(env, "hello world", -1, &str));
|
|
|
|
return str;
|
|
}
|
|
|
|
napi_value CreateFunction(napi_env env, napi_callback_info info) {
|
|
napi_value fn;
|
|
NAPI_CALL(env,
|
|
napi_create_function(env, "theFunction", MyFunction, NULL, &fn));
|
|
|
|
return fn;
|
|
}
|
|
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
NAPI_CALL(env,
|
|
napi_create_function(env, "exports", CreateFunction, NULL, &exports));
|
|
return exports;
|
|
}
|
|
|
|
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
|
|
|