• Home
  • Raw
  • Download

Lines Matching full:addons

3   "source": "doc/api/addons.md",
7 "textRaw": "C++ addons",
8 "name": "C++ addons",
11Addons</em> are dynamically-linked shared objects written in C++. The\n<a href=\"modules.html#modu…
16addons must export an initialization function following\nthe pattern:</p>\n<pre><code class=\"lang…
19 "textRaw": "Context-aware addons",
21 …"desc": "<p>There are environments in which Node.js addons may need to be loaded multiple\ntimes i…
35 …eads.html#worker_threads_class_worker\"><code>Worker</code></a> threads, addons need to clean up a…
41 "displayName": "Context-aware addons"
46addons.</p>\n<pre><code class=\"language-json\">{\n \"targets\": [\n {\n \"target_name\":…
53 …l source tarball or just the headers. If the full\nsource is downloaded, addons will have complete…
58 "textRaw": "Loading addons using `require()`",
62 "displayName": "Loading addons using `require()`"
71addons. The V8 API can, and has, changed\ndramatically from one V8 release to the next (and one ma…
80addons. It is independent from\nthe underlying JavaScript runtime (e.g. V8) and is maintained as p…
87addons intended to help developers get started. The\nexamples use the V8 APIs. Refer to the online…
92 …"desc": "<p>Addons will typically expose objects and functions that can be accessed from\nJavaScri…
99 …"desc": "<p>It is common practice within addons to pass JavaScript functions to a C++\nfunction an…
106 …"desc": "<p>Addons can create and return new objects from within a C++ function as\nillustrated in…