Day 7
Initially, I made a Node.js
C++ addon without ABI stability. Then I learned about Node.js N-API
, which is a C
API that ensures ABI stability across Node.js versions. I used node-addon-api
which is a C++ wrapper to N-API, to make a native addon.