123 breaking releases

new 0.124.0 Mar 5, 2025
0.122.0 Feb 20, 2025
0.114.0 Dec 19, 2024
0.110.0 Nov 28, 2024
0.9.0 Nov 24, 2022

#108 in Procedural macros

Download history 873/week @ 2024-11-17 852/week @ 2024-11-24 939/week @ 2024-12-01 1193/week @ 2024-12-08 978/week @ 2024-12-15 757/week @ 2024-12-22 270/week @ 2024-12-29 573/week @ 2025-01-05 1170/week @ 2025-01-12 819/week @ 2025-01-19 1160/week @ 2025-01-26 604/week @ 2025-02-02 1087/week @ 2025-02-09 1053/week @ 2025-02-16 1531/week @ 2025-02-23 1168/week @ 2025-03-02

4,913 downloads per month
Used in 22 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
~34K SLoC