kaysonwu / node-addon-examples

Node.js C++ addon examples from http://nodejs.org/docs/latest/api/addons.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Node.js C++ addon examples from http://nodejs.org/docs/latest/api/addons.html


Languages

Language:TypeScript 34.4%Language:C++ 32.9%Language:C 16.8%Language:JavaScript 9.9%Language:Python 5.4%Language:CMake 0.6%