Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions doc/api/n-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -6534,11 +6534,13 @@ NAPI_EXTERN napi_status napi_get_uv_event_loop(node_api_basic_env env,
* `[in] env`: The environment that the API is invoked under.
* `[out] loop`: The current libuv loop instance.

Note: While libuv has been relatively stable over time, it does
not provide an ABI stability guarantee. Use of this function should be avoided.
Its use may result in an addon that does not work across Node.js versions.
[asynchronous-thread-safe-function-calls](https://nodejs.org/docs/latest/api/n-api.html#asynchronous-thread-safe-function-calls)
are an alternative for many use cases.
Note: While libuv only [guarantees ABI stability](https://github.com/libuv/libuv?tab=readme-ov-file#versioning)
in a major version, its use may result in an addon that does not work across
Node.js major versions.

[ThreadSafeFunction](#asynchronous-thread-safe-function-calls)
is an ABI-stable alternative for many use cases to calling into the
JavaScript thread from another thread.

## Asynchronous thread-safe function calls

Expand Down
Loading