// Workers AI · dad joke modeWhat did libuv say to its friend? You're a socket to me.
| libuv | |
|---|---|
| Stable release | |
| Written in | C |
| Operating system | Cross-platform |
| Platform | Linux, Android, Windows and OS X/Darwin,[2] FreeBSD, OpenBSD |
| Type | I/O abstraction library |
| License | MIT |
| Website | libuv |
| Repository | |
libuv is a multi-platform C library that provides support for asynchronous I/O based on event loops. It supports epoll(4), kqueue(2), Windows IOCP, Solaris event ports and, since version 1.45.0, Linux io_uring for select asynchronous file operations.[3] It is primarily designed for use in Node.js but is also used by other software projects.[4] It was originally an abstraction around libev or Windows IOCP, as libev does not support IOCP. In node-v0.9.0's version of libuv, the dependency on libev was removed.[5]
Features
[edit]From:[2]
- Full-featured event loop backed by epoll, kqueue, IOCP, or event ports
- Asynchronous TCP and UDP sockets
- Asynchronous DNS resolution
- Asynchronous file and file system operations
- File system events
- ANSI escape code controlled TTY
- IPC with socket sharing, using Unix domain sockets or named pipes (Windows)
- Child processes
- Thread pool
- Signal handling
- High resolution clock
- Threading and synchronization primitives
Origin of the name
[edit]According to libuv developer Ben Noordhuis, the name libuv originally had no specific meaning, but as people kept asking about it, they made something up. They came up with Unicorn Velociraptor, which became the logo of the library.[6]
See also
[edit]References
[edit]- ↑ libuv. "Release v1.52.1: 2026.03.06, Version 1.52.1 (Stable) · libuv/libuv". Retrieved 7 March 2026.
- 1 2 "The libuv project page and source code". GitHub. Retrieved 30 June 2016.
- ↑ Larabel, Michael (18 April 2023). "libuv Adds IO_uring Support For ~8x Throughput Boost". Phoronix. Retrieved 14 July 2026.
- ↑ "Projects that use libuv". libuv GitHub project page. Retrieved 13 January 2025.
- ↑ An introduction to libuv
- ↑ "What does UV stand for in libuv?". groups.google.com. Retrieved 7 June 2022.