We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c452f0 commit 4c1f85bCopy full SHA for 4c1f85b
doc/api/addons.md
@@ -3,10 +3,9 @@
3
<!--introduced_in=v0.10.0-->
4
<!-- type=misc -->
5
6
-Node.js Addons are dynamically-linked shared objects, written in C++, that
7
-can be loaded into Node.js using the [`require()`][require] function, and used
8
-just as if they were an ordinary Node.js module. They are used primarily to
9
-provide an interface between JavaScript running in Node.js and C/C++ libraries.
+Addons are dynamically-linked shared objects written in C++. The
+[`require()`][require] function can load Addons as ordinary Node.js modules.
+Addons provide an interface between JavaScript and C/C++ libraries.
10
11
There are three options for implementing Addons: N-API, nan, or direct
12
use of internal V8, libuv and Node.js libraries. Unless you need direct
0 commit comments