peach a19a732be8 commit message | преди 2 години | |
---|---|---|
.. | ||
doc | преди 2 години | |
external-napi | преди 2 години | |
src | преди 2 години | |
tools | преди 2 години | |
.editorconfig | преди 2 години | |
.travis.yml | преди 2 години | |
CHANGELOG.md | преди 2 години | |
CODE_OF_CONDUCT.md | преди 2 години | |
CONTRIBUTING.md | преди 2 години | |
LICENSE.md | преди 2 години | |
README.md | преди 2 години | |
appveyor.yml | преди 2 години | |
index.js | преди 2 години | |
napi-inl.deprecated.h | преди 2 години | |
napi-inl.h | преди 2 години | |
napi.h | преди 2 години | |
package.json | преди 2 години |
This module contains header-only C++ wrapper classes which simplify the use of the C based N-API provided by Node.js when using C++. It provides a C++ object model and exception handling semantics with low overhead.
N-API is an ABI stable C interface provided by Node.js for building native addons. It is independent from the underlying JavaScript runtime (e.g. V8 or ChakraCore) and is maintained as part of Node.js itself. It is intended to insulate native addons from changes in the underlying JavaScript engine and allow modules compiled for one version to run on later versions of Node.js without recompilation.
The node-addon-api
module, which is not part of Node.js, preserves the benefits
of the N-API as it consists only of inline code that depends only on the stable API
provided by N-API. As such, modules built against one version of Node.js
using node-addon-api should run without having to be rebuilt with newer versions
of Node.js.
It is important to remember that other Node.js interfaces such as
libuv
(included in a project via #include <uv.h>
) are not ABI-stable across
Node.js major versions. Thus, an addon must use N-API and/or node-addon-api
exclusively and build against a version of Node.js that includes an
implementation of N-API (meaning a version of Node.js newer than 6.14.2) in
order to benefit from ABI stability across Node.js major versions. Node.js
provides an ABI stability guide containing a detailed explanation of ABI
stability in general, and the N-API ABI stability guarantee in particular.
As new APIs are added to N-API, node-addon-api must be updated to provide wrappers for those new APIs. For this reason node-addon-api provides methods that allow callers to obtain the underlying N-API handles so direct calls to N-API and the use of the objects/methods provided by node-addon-api can be used together. For example, in order to be able to use an API for which the node-addon-api does not yet provide a wrapper.
APIs exposed by node-addon-api are generally used to create and manipulate JavaScript values. Concepts and operations generally map to ideas specified in the ECMA262 Language Specification.
(See CHANGELOG.md for complete Changelog)
The following is the documentation for node-addon-api.
Are you new to node-addon-api? Take a look at our examples
To run the node-addon-api tests do:
npm install
npm test
To avoid testing the deprecated portions of the API run
npm install
npm test --disable-deprecated
To run the node-addon-api tests with --debug
option:
npm run-script dev
If you want faster build, you might use the following option:
npm run-script dev:incremental
Take a look and get inspired by our test suite
We love contributions from the community to node-addon-api. See CONTRIBUTING.md for more details on our philosophy around extending this module.
Name | GitHub Link |
---|---|
Anna Henningsen | addaleax |
Arunesh Chandra | aruneshchandra |
Gabriel Schulhof | gabrielschulhof |
Hitesh Kanwathirtha | digitalinfinity |
Jim Schlight | jschlight |
Michael Dawson | mhdawson |
Nicola Del Gobbo | NickNaso |
Taylor Woll | boingoing |
Name | GitHub Link |
---|---|
Benjamin Byholm | kkoopa |
Jason Ginchereau | jasongin |
Sampson Gao | sampsongao |
Licensed under MIT