libuv
Template:Short description Template:DMCA
Page Module:Infobox/styles.css has no content.
| libuv | |
|---|---|
| Lua error in package.lua at line 80: module 'Module:InfoboxImage/data' not found. | |
| Written in | C |
| Engine | Page Template:Plainlist/styles.css has no content.Template:EditAtWikidata |
| Operating system | Cross-platform |
| Platform | Linux, Android, Windows and OS X/Darwin,[1] FreeBSD, OpenBSD |
| Type | I/O abstraction library |
| License | MIT |
| Website | Script error: No such module "WikidataIB". |
| Repository | Page Template:Plainlist/styles.css has no content.
|
Script error: No such module "Check for conflicting parameters".
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 Linux io_uring. It is primarily designed for use in Node.js but is also used by other software projects.[2] 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.[3]
Features
From:[1]
- 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
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.[4]
See also
Lua error in mw.title.lua at line 404: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal').
References
Page Template:Reflist/styles.css has no content.
- ^ a b Page Module:Citation/CS1/styles.css has no content."The libuv project page and source code". GitHub. Retrieved 30 June 2016.
- ^ Page Module:Citation/CS1/styles.css has no content."Projects that use libuv". libuv GitHub project page. Retrieved 13 January 2025.
- ^ An introduction to libuv
- ^ Page Module:Citation/CS1/styles.css has no content."What does UV stand for in libuv?". groups.google.com. Retrieved 7 June 2022.
External links
- Lua error in Module:Official_website at line 94: attempt to index field 'wikibase' (a nil value).
- libuv on GitHub
- An Introduction to libuv
- libuv API documentation
- libuv design overview