A repository of Node.js Addons examples.
Implementations of examples are named either after Node.js versions (node_0.10,
node_0.12, etc), or Node.js addon implementation APIs:
nan: C++-based abstraction between Node and direct V8 APIs.Node-API: C-based API guaranteeing ABI stability across different node versions as well as JavaScript engines. (Node-API was previously known as N-API.)node-addon-api: header-only C++ wrapper classes which simplify the use of the C-based Node-API.node-addon-api-addon-class: Similar tonode-addon-api, but deriving from theNapi::Addonclass. 1_hello_world provides an example.
Implementations against unsupported versions of Node.js are provided for completeness and historical context. They are not maintained.
The examples are primarily maintained for Node-API and node-addon-api and as outlined in the Node.js documentation, unless there is a need for direct access to functionality which is not exposed by Node-API, use Node-API.
The Node-API ResourceΒ offers an
excellent orientation and tips for developers just getting started with Node-API
and node-addon-api.
The directory structure is as follows:
REPO_ROOT
βββ test_all.js
βββ package.json
βββ README.md
βββ src
βββ 1-getting-started
β βββ example1
β β βββ nan
β β βββ node-addon-api
β β βββ napi
β βββ example2
β βββ example3
βββ 2-js-to-native-conversion
βββ 3-context-awareness
βββ 4-references-and-handle-scope
βββ 5-async-work
βββ 6-threadsafe-function
βββ 7-events
βββ 8-toolingIn each example's implementation subdirectory, run
npm install
node ./
to see the example in action.