NAPI
N-API, also known as Node-API, is a stable C API for building native addons for Node.js. Its goal is to provide an ABI-stable interface that allows addons to be compiled once and run across multiple Node.js versions without recompilation. By abstracting away engine-specific details, N-API aims to reduce the churn caused by changes to the underlying JavaScript engine.
The API defines a set of types and functions that enable native code to create and manipulate
N-API was developed by the Node.js community to provide binary compatibility across Node.js releases independent of