0%

nodejs C++ 扩展 hello-world

C++ native 扩展,让你的 function 也体验下 function () { [native code] }的赶脚。

资料收集

关于 V8 的各种概念(Handle Local Function …)

关于 libuv

中文资料

Hello World

nodejs 的 cpp addon,连接 cpp 代码和 js 代码

1.安装 node-gyp

1
$ npm i node-gyp -g

node 本身使用 gyp 构建工具,然后 node 社区出了 node-gyp 这种方便的 addon 构建工具。

2.创建 hello.cc 文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# include "node.h"
# include "v8.h"

using namespace v8;

Handle<Value> a_method(const Arguments& args){
HandleScope scope;
return scope.Close(String::New("这是返回值。。。Hello C++ Addon ..."));
}

void init(Handle<Object> exports){
exports->Set(
String::NewSymbol("a_method"),
FunctionTemplate::New(a_method)->GetFunction()
);
}

NODE_MODULE(hello,init)
  • node.h v8.h node 的头文件和 v8 的头文件

  • NODE_MODULE是个宏定义,不是方法,后面不需要分号,参见 node.h
    NODE_MODULE 宏(module_name,func) - module_name 表示这个要生成的 module 名字,必须与 binding.gyp 中 target_name 一致 - func 初始化方法,两个参数(Handle<Object> exports,Handle<Object> module)
    使用
    module->Set(String::NewSymbol("exports"),xxx) 表示 js 里的 module.exports = xxx

    3.编写 binding.gyp 文件,用于生成 vcxproj 文件或者 linux 下的 Makefile

1
2
3
4
5
6
7
8
{
"targets":[
{
"target_name": "hello",
"sources":["hello.cc"]
}
]
}

target_name 要与 NODE_MODULE(name,func)这个 name 一致

4.使用 node-gyp 生成

1
node-gyp <command>
命令 作用
configure 生成项目文件,vcxproj or Makefile
clean 清理 build 目录
build 调用 MsBuild 等生成工具生成
rebuild 上面三个操作

完整的见 https://github.com/TooTallNate/node-gyp

打开命令行窗口

1
$ node-gyp build

build\Release\hello.node就是生成的 addon 了

5.js 测试

1
2
3
4
5
var cpp_hello = require("./build/Release/hello");

console.log(cpp_hello.a_method());

console.log(cpp_hello.a_method.toString());

结果 - 就是这样,所谓的 native code