libuv

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Chrisahn (talk | contribs) at 00:47, 29 November 2020 (→‎top: deleted unsourced claim regarding "Unicorn Velociraptor" https://www.google.com/search?q=site:libuv.org+unicorn https://www.google.com/search?q=site:libuv.org+velociraptor). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

libuv
Stable release
1.38.1 / July 3, 2020; 3 years ago (2020-07-03)[1]
Repository
Written inC
Operating systemCross-platform
PlatformLinux, Android, Windows and OS X/Darwin,[2] FreeBSD, OpenBSD
TypeI/O abstraction library
LicenseMIT
Websitelibuv.org Edit this on Wikidata

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, and Solaris event ports. 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 supports only select(2) and doesn't support poll(2) and IOCP on Windows. In node-v0.9.0's version of libuv, the dependency on libev was removed.[4]

Features

From:[2]

See also

References

  1. ^ "The libuv github releases". GitHub. Retrieved 15 August 2020.
  2. ^ a b "The libuv project page and source code". GitHub. Retrieved 30 June 2016.
  3. ^ "Projects that use libuv". libuv GitHub project page. Retrieved 30 June 2016.
  4. ^ An introduction to libuv

External links