node.native icon indicating copy to clipboard operation
node.native copied to clipboard

C++11 port for the Node: native performance and modern simplicity.

Results 18 node.native issues
Sort by recently updated
recently updated
newest added

... one of the best http libraries for c++

Recently i tried to include the native.h in multiple files in my project. It seems tha guard headers didnt their job, resulting compiling errors like below: hlrfrwdr/httpserver.o: In function `native::base::_delete_handle(uv_handle_s*)':...

The closest I've gotten is the header output (https://github.com/SamuelMarks/node.native/blob/master/routes.h#L54): ``` $ http localhost:8080/headers HTTP/1.1 200 OK Content-Length: 141 Content-Type: application/json { "headers": [ { "Accept": "*/*" }, { "Accept-Encoding": "gzip,...

Hello everyone!! I was trying to compile the project but it shows an error that i don't know how to solve. This is the error: dani@dani-portatil:~/Documentos/node.native$ make g++ -std=gnu++0x -g...

libuv is a great abstraction layer replacement for libevent; with a major feature being interoperability. Is there a reason we are using vanilla Makefiles? I.e.: can we migrate from our...

Is there currently a way to serve static files via http::response?

Was thinking this could be a more platform friendly project if we made use of gyp

Discussion
TODO

How do I setup a separate project that works with node.native (from git, not from install library locations)? Here is what I have tried: ``` git clone https://github.com/d5/node.native.git mkdir routing_tests...