napi-rs/crates
Bo e47c13f177
fix(napi): check if the tokio runtime exists when registering the module
And recreate it if it does not exist.

In windows, electron renderer process will crash if:
1. Import some NAPI module that enable `tokio-rt` flag in renderer process.
2. Reload the page.
3. Call a function imported from that NAPI module.

Because the tokio runtime will be dropped when reloading the page, and won't create again, but currently we assume that the runtime must exist in tokio-based `within_runtime_if_available`.
This will cause some panic like this:

```
thread '<unnamed>' panicked at 'called `Option::unwrap()` on a `None` value', napi-rs\crates\napi\src\tokio_runtime.rs:72:42
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Error: Renderer process crashed: crashed, exitCode: -529697949
    at EventEmitter.<anonymous> (napi-rs\examples\napi\electron.js:33:9)
    at EventEmitter.emit (node:events:525:35)
```
2023-03-28 12:03:00 +08:00
..
backend Release independent packages 2023-03-22 18:03:28 +08:00
build Release independent packages 2022-06-10 15:37:27 +08:00
macro Release independent packages 2023-03-22 18:03:28 +08:00
napi fix(napi): check if the tokio runtime exists when registering the module 2023-03-28 12:03:00 +08:00
sys feat(napi): expose uv_run (#1499) 2023-02-27 17:31:03 +08:00