Skip to content

KaiRoesner/node-addon-examples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node.js Addon Examples

Build Status

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.
  • napi: C-based API guaranteeing ABI stability across different node versions as well as JavaScript engines.
  • node-addon-api: header-only C++ wrapper classes which simplify the use of the C-based N-API.

Implementations against unsupported versions of Node.js are provided for completeness and historical context. They are not maintained.

The N-API Resource offers an excellent orientation and tips for developers just getting started with N-API and node-addon-api.

Usage

The directory structure is as follows:

<name of example>
  |
  +--- <implementation 1>
  |      |
  |      +--- files...
  +--- <implementation 2>
  .      |
  .      +--- files...
  .

In each example's implementation subdirectory, run

$ npm install
$ node ./

to see the example in action.

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 33.9%
  • C++ 33.2%
  • C 16.7%
  • JavaScript 10.1%
  • Python 5.5%
  • CMake 0.6%