| Crates.io | napi_sym |
| lib.rs | napi_sym |
| version | 0.147.0 |
| created_at | 2022-10-05 14:14:40.004197+00 |
| updated_at | 2025-09-24 20:00:41.824647+00 |
| description | proc macro for writing N-API symbols |
| homepage | |
| repository | https://github.com/denoland/deno |
| max_upload_size | |
| id | 680558 |
| size | 10,599 |
A proc_macro for Deno's Node-API implementation. It does the following things:
#[no_mangle] and rewrites it as
unsafe extern "C" $name.symbol_exports.json.deno_napi::Result to raw napi_result.use deno_napi::Env;
use deno_napi::Error;
use deno_napi::Result;
use deno_napi::napi_value;
#[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.jsonA 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.