doc: add link to nodejs.org

PR-URL: https://github.com/libuv/libuv/pull/2325
Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
Jenil Christo 2019-06-07 00:28:07 +05:30 committed by cjihrig
parent f8cab71872
commit 805401b0b3
No known key found for this signature in database
GPG Key ID: 7434390BDBE9B9C5

View File

@ -4,9 +4,11 @@
Design overview
===============
libuv is cross-platform support library which was originally written for NodeJS. It's designed
libuv is cross-platform support library which was originally written for `Node.js`_. It's designed
around the event-driven asynchronous I/O model.
.. _Node.js: https://nodejs.org
The library provides much more than a simple abstraction over different I/O polling mechanisms:
'handles' and 'streams' provide a high level abstraction for sockets and other entities;
cross-platform file I/O and threading functionality is also provided, amongst other things.