From 424c8e1eb91c74125418c64b4b15db71169054d2 Mon Sep 17 00:00:00 2001 From: Voltrex <62040526+VoltrexMaster@users.noreply.github.com> Date: Thu, 8 Apr 2021 06:43:59 +0430 Subject: [PATCH] doc: add link to V8 Added the link redirecting to the V8 engine github repository just like libuv. PR-URL: https://github.com/nodejs/node/pull/38144 Reviewed-By: Jiawen Geng Reviewed-By: James M Snell Reviewed-By: Darshan Sen Reviewed-By: Richard Lau Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig --- doc/api/addons.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/addons.md b/doc/api/addons.md index dba1c0df8739f7..d3fcc642577208 100644 --- a/doc/api/addons.md +++ b/doc/api/addons.md @@ -16,7 +16,7 @@ Node-API. When not using Node-API, implementing addons is complicated, involving knowledge of several components and APIs: -* V8: the C++ library Node.js uses to provide the +* [V8][]: the C++ library Node.js uses to provide the JavaScript implementation. V8 provides the mechanisms for creating objects, calling functions, etc. V8's API is documented mostly in the `v8.h` header file (`deps/v8/include/v8.h` in the Node.js source @@ -1362,6 +1362,7 @@ console.log(result); [Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide [Linking to libraries included with Node.js]: #addons_linking_to_libraries_included_with_node_js [Native Abstractions for Node.js]: https://github.com/nodejs/nan +[V8]: https://v8.dev/ [`Worker`]: worker_threads.md#worker_threads_class_worker [bindings]: https://github.com/TooTallNate/node-bindings [download]: https://github.com/nodejs/node-addon-examples