From a76d13322a4fb148a276bf4a55f6197b32825e43 Mon Sep 17 00:00:00 2001 From: Vladimir Morozov Date: Tue, 3 Sep 2024 13:28:13 -0700 Subject: [PATCH] Update doc/api/embedding.md Co-authored-by: Michael Dawson --- doc/api/embedding.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/api/embedding.md b/doc/api/embedding.md index 6a2678ff91d7f6..f853847ab6818e 100644 --- a/doc/api/embedding.md +++ b/doc/api/embedding.md @@ -171,7 +171,9 @@ int RunNodeInstance(MultiIsolatePlatform* platform, As an alternative, an embedded Node.js can also be fully controlled through -Node-API. This API supports both C and C++ through [node-addon-api][]. +Node-API. This API supports both C and C++ through [node-addon-api][]. Although +the embedding API is not promised to be ABI stable at this time, it uses node-api types +and implementation so that it might be a some time in the future. An example can be found [in the Node.js source tree][napi_embedding.c].