24 breaking releases

new 0.25.0 Mar 23, 2023
0.23.0 Mar 16, 2023
0.12.0 Dec 15, 2022
0.9.0 Nov 24, 2022

#113 in Procedural macros

Download history 304/week @ 2022-12-03 339/week @ 2022-12-10 210/week @ 2022-12-17 192/week @ 2022-12-24 228/week @ 2022-12-31 289/week @ 2023-01-07 343/week @ 2023-01-14 321/week @ 2023-01-21 311/week @ 2023-01-28 393/week @ 2023-02-04 300/week @ 2023-02-11 353/week @ 2023-02-18 382/week @ 2023-02-25 278/week @ 2023-03-04 373/week @ 2023-03-11 333/week @ 2023-03-18

1,468 downloads per month
Used in 5 crates (4 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 pub 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

~1–1.8MB
~41K SLoC