101个版本 (66个稳定版)
3.0.0-alpha.7 | 2024年7月23日 |
---|---|
3.0.0-alpha.2 | 2024年6月27日 |
3.0.0-alpha.0 | 2024年3月20日 |
2.16.11 | 2024年8月10日 |
0.1.0 | 2017年11月30日 |
#596 在 进程宏 中排名
575,076 每月下载量
被 52 个 Crates使用 (40个直接使用)
180KB
5K SLoC
napi-derive
在examples 文件夹中查看更多示例
#[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();
}
依赖
~0.9–1.9MB
~34K SLoC