Node.native :Node.js的C++11移植
程序员文章站
2024-02-24 16:04:47
...
node.native 是node.js 的一个 C++11 (又名C++0x)移植版本,由Daniel kang开发。
示例代码
使用node.native写的最简单的web-server示例:
值得注意的是,node.native由头文件组(*.h)成,需要利用libuv和http-parser库。关于node.native的编译效率可以查看这篇文章介绍:http://www.devthought.com/2012/02/08/node-http-hello-world-showdown/。
项目地址:https://github.com/d5/node.native
示例代码
使用node.native写的最简单的web-server示例:
#include <iostream> #include "http.h" using namespace native::http; int main() { http server; if(server.listen("0.0.0.0", 8080, [](request& req, response& res){ res.set_status(200); res.set_header("Content-Type", "text/plain"); res.end("C++ FTW\n"); })) std::cout << "Server running at http://0.0.0.0:8080/" << std::endl; return native::run(); }
值得注意的是,node.native由头文件组(*.h)成,需要利用libuv和http-parser库。关于node.native的编译效率可以查看这篇文章介绍:http://www.devthought.com/2012/02/08/node-http-hello-world-showdown/。
项目地址:https://github.com/d5/node.native
下一篇: 应用被苹果拒之门外的 9 个意外原因