File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77
88* [ Assertion Testing] ( assert.html )
99* [ Buffer] ( buffer.html )
10- * [ C/C ++ Addons] ( addons.html )
10+ * [ C++ Addons] ( addons.html )
1111* [ C/C++ Addons - N-API] ( n-api.html )
1212* [ Child Processes] ( child_process.html )
1313* [ Cluster] ( cluster.html )
Original file line number Diff line number Diff line change 1- # C/C ++ Addons
1+ # C++ Addons
22
3- Node.js Addons are dynamically-linked shared objects, written in C or C ++, that
3+ Node.js Addons are dynamically-linked shared objects, written in C++, that
44can be loaded into Node.js using the [ ` require() ` ] [ require ] function, and used
55just as if they were an ordinary Node.js module. They are used primarily to
66provide an interface between JavaScript running in Node.js and C/C++ libraries.
@@ -26,7 +26,7 @@ involving knowledge of several components and APIs :
2626 off-loading work via libuv to non-blocking system operations, worker threads
2727 or a custom use of libuv's threads.
2828
29- - Internal Node.js libraries. Node.js itself exports a number of C/C ++ APIs
29+ - Internal Node.js libraries. Node.js itself exports a number of C++ APIs
3030 that Addons can use &mdash ; the most important of which is the
3131 ` node::ObjectWrap ` class.
3232
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ compiled for one version to run on later versions of Node.js without
1212recompilation.
1313
1414Addons are built/packaged with the same approach/tools
15- outlined in the section titled [ C/C ++ Addons] ( addons.html ) .
15+ outlined in the section titled [ C++ Addons] ( addons.html ) .
1616The only difference is the set of APIs that are used by the native code.
1717Instead of using the V8 or [ Native Abstractions for Node.js] [ ] APIs,
1818the functions available in the N-API are used.
You can’t perform that action at this time.
0 commit comments