napi-rs/crates/macro
2023-08-10 10:44:55 +08:00
..
src feat: clean napi-derive noop feature code path (#1571) 2023-04-18 10:15:29 +08:00
Cargo.toml chore: MSRV 1.63.0 2023-08-10 10:44:55 +08:00
README.md Introduce #[napi] procedural macro to automation development boilerplate (#696) 2021-09-23 01:29:09 +08:00

napi-derive

chat

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();
}