use std::env; use napi::bindgen_prelude::*; #[napi] fn get_cwd Result<()>>(callback: T) { callback(env::current_dir().unwrap().to_string_lossy().to_string()).unwrap(); } #[napi] fn option_end) -> Result<()>>(callback: T) { callback("Hello".to_string(), None).unwrap(); } #[napi] fn option_start, String) -> Result<()>>(callback: T) { callback(None, "World".to_string()).unwrap(); } #[napi] fn option_start_end, String, Option) -> Result<()>>(callback: T) { callback(None, "World".to_string(), None).unwrap(); } #[napi] fn option_only) -> Result<()>>(callback: T) { callback(None).unwrap(); } /// napi = { version = 2, features = ["serde-json"] } #[napi] fn read_file, Option) -> Result<()>>(callback: T) { match read_file_content() { Ok(s) => callback(Ok(()), Some(s)), Err(e) => callback(Err(e), None), } .unwrap(); } fn read_file_content() -> Result { // serde_json::from_str(&s)?; Ok("hello world".to_string()) } #[napi] fn return_js_function(env: Env) -> Result { get_js_function(&env, read_file_js_function) }