文件名称:nodejs-addons:从Node.js调用本机C ++
文件大小:9KB
文件格式:ZIP
更新时间:2024-05-25 18:32:45
C++
Node.js插件
(可以在找到完整的仓库)有时您想直接从节点应用程序使用现有的c ++代码。 您可以使用Node.js插件, 和库来实现。
C ++代码
// hello.cc
# include < node>
namespace demo {
using v8::FunctionCallbackInfo;
using v8::Isolate;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
void Method ( const FunctionCallbackInfo
【文件预览】:
nodejs-addons-master
----.gitignore(95B)
----package.json(172B)
----Makefile(57B)
----LICENSE(11KB)
----README.md(7KB)
----hello.cc(512B)
----binding.gyp(156B)
----hello.js(104B)