Libuv: Difference between revisions
Appearance
Content deleted Content added
update latest stable version - see https://github.com/libuv/libuv/releases/tag/v1.9.1 |
Adding local short description: "Software library for asynchronous I/O", overriding Wikidata description "multi-platform software library with a focus on asynchronous I/O" |
||
(38 intermediate revisions by 30 users not shown) | |||
Line 1: | Line 1: | ||
{{Short description|Software library for asynchronous I/O}} |
|||
{{Use dmy dates|date=August 2017}} |
|||
{{lowercase|title=libevent}} |
{{lowercase|title=libevent}} |
||
{{Infobox software |
{{Infobox software |
||
| name |
| name = libuv |
||
| logo |
| logo = libuv.svg |
||
| screenshot |
| screenshot = |
||
| caption |
| caption = |
||
| collapsible |
| collapsible = |
||
| author |
| author = |
||
| developer |
| developer = |
||
| released |
| released = |
||
| latest release version = |
| latest release version = {{wikidata|property|reference|edit|P348}} |
||
| latest release date |
| latest release date = {{release date and age |{{wikidata|qualifier|P348|P577}}}} |
||
| latest preview version = |
| latest preview version = |
||
| latest preview date |
| latest preview date = |
||
⚫ | |||
| status = |
|||
⚫ | |||
⚫ | |||
⚫ | | platform = [[Linux]], [[Android (operating system)|Android]], [[Windows]] and [[OS X]]/[[Darwin (operating system)|Darwin]],<ref name="libuvgithub">{{cite web |url=https://github.com/libuv/libuv |title=The libuv project page and source code| website=GitHub |accessdate=30 June 2016}}</ref> [[FreeBSD]], [[OpenBSD]] |
||
⚫ | |||
| size = |
|||
⚫ | | platform |
||
⚫ | |||
| size = |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
| website = {{URL|http://libuv.org}} |
|||
| frequently updated = |
|||
}} |
}} |
||
'''libuv''' is a multi-platform [[C (programming language)|C]] library that provides support for [[asynchronous I/O]] based on [[event loop]]s. It supports [[Epoll|<code>epoll(4)</code>]], [[Kqueue|<code>kqueue(2)</code>]], Windows [[IOCP]], |
'''libuv''' is a multi-platform [[C (programming language)|C]] library that provides support for [[asynchronous I/O]] based on [[event loop]]s. It supports [[Epoll|<code>epoll(4)</code>]], [[Kqueue|<code>kqueue(2)</code>]], Windows [[IOCP]], [[Solaris (operating system)|Solaris]] [[event port]]s and [[io_uring|Linux io_uring]]. It is primarily designed for use in [[Node.js]] but it is also used by other software projects.<ref name="projectsthatuselibuv">{{cite web |title=Projects that use libuv |url=https://github.com/libuv/libuv/wiki/Projects-that-use-libuv |website=libuv GitHub project page| accessdate=30 June 2016}}</ref> It was originally an abstraction around {{wdrl|Q63064998}} or Microsoft [[IOCP]], as libev does not support IOCP on Windows. In node-v0.9.0's version of libuv, the dependency on libev was removed.<ref>[https://nikhilm.github.io/uvbook/introduction.html#background An introduction to libuv]</ref> |
||
== |
==Features== |
||
From:<ref name="libuvgithub" /> |
From:<ref name="libuvgithub" /> |
||
* Full-featured event loop backed by epoll, kqueue, IOCP, event ports |
* Full-featured event loop backed by epoll, kqueue, IOCP, event ports |
||
* Asynchronous [[Transmission Control Protocol|TCP]] and [[User Datagram Protocol|UDP]] sockets |
* Asynchronous [[Transmission Control Protocol|TCP]] and [[User Datagram Protocol|UDP]] sockets |
||
* Asynchronous [[Domain Name System|DNS]] resolution |
* Asynchronous [[Domain Name System|DNS]] resolution |
||
Line 42: | Line 41: | ||
* Threading and synchronization primitives |
* 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, so they made something up. They came up with [[Unicorn]] [[Velociraptor]], which became the logo of the library.<ref>{{Cite web |title=What does UV stand for in libuv? |url=https://groups.google.com/g/libuv/c/jGpqKLXAVBE |access-date=2022-06-07 |website=groups.google.com}}</ref> |
|||
⚫ | |||
==See also== |
|||
⚫ | |||
* [[libevent]] |
* [[libevent]] |
||
* [[ |
* [[Reactor pattern]] |
||
==References== |
==References== |
||
Line 51: | Line 53: | ||
==External links== |
==External links== |
||
* {{official website}} |
|||
* [https://github.com/libuv/libuv libuv web page] |
|||
* [ |
* {{GitHub|libuv/libuv}} |
||
* [https://nikhilm.github.io/uvbook/ An Introduction to libuv] |
|||
* [http://docs.libuv.org/ libuv API documentation] |
* [http://docs.libuv.org/ libuv API documentation] |
||
* [http://docs.libuv.org/en/latest/design.html libuv design overview] |
* [http://docs.libuv.org/en/latest/design.html libuv design overview] |
||
⚫ | |||
[[Category:Events (computing)]] |
[[Category:Events (computing)]] |
||
[[Category:Free computer libraries]] |
[[Category:Free computer libraries]] |
||
⚫ | |||
[[Category:Node.js]] |
Latest revision as of 00:22, 27 July 2024
Stable release | 1.49.2[1]
/ 18 October 2024 |
---|---|
Repository | |
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 |
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 it is also used by other software projects.[3] It was originally an abstraction around libev or Microsoft IOCP, as libev does not support IOCP on Windows. In node-v0.9.0's version of libuv, the dependency on libev was removed.[4]
Features
[edit]From:[2]
- Full-featured event loop backed by epoll, kqueue, IOCP, 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, so they made something up. They came up with Unicorn Velociraptor, which became the logo of the library.[5]
See also
[edit]References
[edit]- ^ "Release v1.49.2: 2024.10.18, Version 1.49.2 (Stable) · libuv/libuv". Retrieved 20 October 2024.
- ^ a b "The libuv project page and source code". GitHub. Retrieved 30 June 2016.
- ^ "Projects that use libuv". libuv GitHub project page. Retrieved 30 June 2016.
- ^ An introduction to libuv
- ^ "What does UV stand for in libuv?". groups.google.com. Retrieved 7 June 2022.