欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  资讯频道

Node.native :Node.js的C++11移植

程序员文章站 2024-02-24 16:04:47
...
node.nativenode.js 的一个 C++11 (又名C++0x)移植版本,由Daniel kang开发。

示例代码

使用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)成,需要利用libuvhttp-parser库。关于node.native的编译效率可以查看这篇文章介绍:http://www.devthought.com/2012/02/08/node-http-hello-world-showdown/

项目地址:https://github.com/d5/node.native

相关标签: Node C++