Top "Libuv" questions

libuv is a platform layer for Node written in C. Its purpose is to abstract IOCP on Windows and libev-like functionality on Unix systems.

How does libuv compare to Boost/ASIO?

I'd be interested in aspects like: scope/features performance maturity

c++ boost boost-asio libuv
What does the "EXDEV: cross-device link not permitted" error mean?

What does this error actually mean? What is a "cross-device link"? It is mentioned on this libuv page but it …

node.js libuv
C++ error: reference to non-static member function must be called

I'm trying to create a class to abstract some basic behavior of libuv's networking functions. #define TCP_BACKLOG 256 class _tcp { …

c++ libuv
How to install libuv on ubuntu?

sudo apt-get install libuv $ sudo apt-get install libuv [sudo] username ... It fails to find package and install. Is libuv included …

linux ubuntu installation apt-get libuv
Closing libUV Handles Correctly

I'm trying to find out how to fix these memory leaks I'm getting while running this program with Valgrind. The …

c libuv
Calling Javascript function from a C++ callback in V8

I'm trying to call a registered JS function when a c++ callback is called, but I'm getting a segfault for …

c++ multithreading v8 libuv
Why is LIBUV needed in Node JS?

So, may be this question is too noob and novice to be asked but I still have no clue why …

c++ node.js v8 libuv
Confusion about node.js internal asynchronous I/O mechanism

I have learned that node.js use libeio internally to perform async file I/O, with thread pool, on *nix …

javascript linux node.js io libuv