114 releases (67 stable)
3.0.0-alpha.19 | Nov 13, 2024 |
---|---|
3.0.0-alpha.17 | Oct 31, 2024 |
3.0.0-alpha.7 | Jul 23, 2024 |
3.0.0-alpha.0 | Mar 20, 2024 |
0.1.0 | Nov 30, 2017 |
#650 in Procedural macros
289,488 downloads per month
Used in 57 crates
(45 directly)
205KB
6K
SLoC
napi-derive
Checkout more examples in examples folder
#[macro_use]
extern crate napi_derive;
use napi::bindgen_prelude::*;
#[napi]
fn fibonacci(n: u32) -> u32 {
match n {
1 | 2 => 1,
_ => fibonacci_native(n - 1) + fibonacci_native(n - 2),
}
}
#[napi]
fn get_cwd<T: Fn(String) -> Result<()>>(callback: T) {
callback(env::current_dir().unwrap().to_string_lossy().to_string()).unwrap();
}
Dependencies
~0.6–1.1MB
~22K SLoC