UNPKG

@stdlib/napi

Version:

C APIs for creating Node-API native add-ons.

212 lines (121 loc) 4.42 kB
<!-- @license Apache-2.0 Copyright (c) 2022 The Stdlib Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- lint disable maximum-heading-length --> # Node-API Exports > C utilities for registering Node-API modules. <!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> <section class="intro"> </section> <!-- /.intro --> <!-- Package usage documentation. --> <section class="usage"> ## Usage ```javascript var headerDir = require( '@stdlib/napi/export' ); ``` #### headerDir Absolute file path for the directory containing header files for C APIs. ```javascript var dir = headerDir; // returns <string> ``` </section> <!-- /.usage --> <!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="notes"> </section> <!-- /.notes --> <!-- Package usage examples. --> <section class="examples"> ## Examples ```javascript var headerDir = require( '@stdlib/napi/export' ); console.log( headerDir ); // => <string> ``` </section> <!-- /.examples --> <!-- C interface documentation. --> * * * <section class="c"> ## C APIs <!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> <section class="intro"> </section> <!-- /.intro --> <!-- C usage documentation. --> <section class="usage"> ### Usage ```c #include "stdlib/napi/export.h" ``` #### STDLIB_NAPI_MODULE_EXPORT_FCN( name ) Macro for registering a Node-API module which exports a function. ```c #include <node_api.h> // ... static napi_value addon( napi_env env, napi_callback_info info ) { // ... } // ... // Register a Node-API module: STDLIB_NAPI_MODULE_EXPORT_FCN( addon ) ``` The macro expects the following arguments: - **name**: name of the C function to export. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. #### STDLIB_NAPI_MODULE_EXPORT_FCN_WITH_METHOD( fcn_name, prop_name, fcn_method_name ) Macro for registering a Node-API module which exports a function having a method. ```c #include <node_api.h> // ... static napi_value addon( napi_env env, napi_callback_info info ) { // ... } static napi_value addon_method( napi_env env, napi_callback_info info ) { // ... } // ... // Register a Node-API module: STDLIB_NAPI_MODULE_EXPORT_FCN_WITH_METHOD( addon, "foo", addon_method ) ``` The macro expects the following arguments: - **fcn_name**: name of the C function to export. - **prop_name**: property name. - **fcn_method_name**: name of the C function to export as a method. When used, this macro should be used **instead of** `NAPI_MODULE`. The macro includes `NAPI_MODULE`, thus ensuring Node-API module registration. </section> <!-- /.usage --> <!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="notes"> </section> <!-- /.notes --> <!-- C API usage examples. --> <section class="examples"> </section> <!-- /.examples --> </section> <!-- /.c --> <!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="references"> </section> <!-- /.references --> <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> <section class="related"> </section> <!-- /.related --> <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> <section class="links"> </section> <!-- /.links -->