Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Node-gyp是一个用 Node.js 编写的跨平台命令行工具,用于为 Node.js 编译本机插件模块。我试图让我的节点程序运行我编写的一些 C++。Node-gyp 似乎使这个过程更容易,就像在这个例子中一样,我可以通过执行然后运行它来node-gyp configure运行node-gyp build它node test.js
node-gyp configure
node-gyp build
node test.js
我仍然无法理解如何设置binding.cc和binding.gyp文件。有谁知道发生了什么或知道任何好的指南/文档?
binding.cc
binding.gyp
插件文档页面和从该页面链接的节点插件示例应该是一个好的开始。还可以观看有关二进制模块基础知识的幻灯片(尽管它使用较旧的 node-waf 作为构建工具)