107 breaking releases

new 0.108.0 Nov 21, 2024
0.106.0 Nov 6, 2024
0.94.0 Jul 31, 2024
0.73.0 Mar 28, 2024
0.9.0 Nov 24, 2022

#116 in Procedural macros

Download history 470/week @ 2024-07-31 184/week @ 2024-08-07 65/week @ 2024-08-14 453/week @ 2024-08-21 223/week @ 2024-08-28 282/week @ 2024-09-04 282/week @ 2024-09-11 187/week @ 2024-09-18 166/week @ 2024-09-25 578/week @ 2024-10-02 428/week @ 2024-10-09 796/week @ 2024-10-16 579/week @ 2024-10-23 611/week @ 2024-10-30 889/week @ 2024-11-06 444/week @ 2024-11-13

2,580 downloads per month
Used in 14 crates (7 directly)

MIT license

4KB

napi_sym

A proc_macro for Deno's Node-API implementation. It does the following things:

  • Marks the symbol as #[no_mangle] and rewrites it as unsafe extern "C" $name.
  • Asserts that the function symbol is present in symbol_exports.json.
  • Maps deno_napi::Result to raw napi_result.
use deno_napi::napi_value;
use deno_napi::Env;
use deno_napi::Error;
use deno_napi::Result;

#[napi_sym::napi_sym]
fn napi_get_boolean(
  env: *mut Env,
  value: bool,
  result: *mut napi_value,
) -> Result {
  let _env: &mut Env = env.as_mut().ok_or(Error::InvalidArg)?;
  // *result = ...
  Ok(())
}

symbol_exports.json

A file containing the symbols that need to be put into the executable's dynamic symbol table at link-time.

This is done using /DEF: on Windows, -exported_symbol,_ on macOS and --export-dynamic-symbol= on Linux. See cli/build.rs.

On Windows, you need to generate the .def file by running tools/napi/generate_symbols_lists.js.

Dependencies

~0.7–1.6MB
~35K SLoC