xmjw / node.native

C++11 port for Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node.native

node.native is a C++11 (aka C++0x) port for node.js.

Please note that node.native project is under heavy development: I'm working on the first release at refactor branch.

Sample code

Simplest web-server example using node.native.

#include <iostream>
#include <native/native.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");
    })) return 1; // Failed to run server.

    std::cout << "Server running at http://0.0.0.0:8080/" << std::endl;
    return native::run();
}

Getting started

node.native consists of header files(*.h) only, but requires libuv and http-parser lib to use.

To compile included sample application(webserver.cpp):

export LIBUV_PATH=/path/to/libuv_dir
export HTTP_PARSER_PATH=/path/to/http-parser_dir

then,

make

I tested the code on Ubuntu 11.10 and GCC 4.6.1.

Other Resources

You can also access this page via http://www.nodenative.com.

About

C++11 port for Node.js

License:MIT License