-
If I understand correctly, Node.js has not integrated all the functionality of v8. https://github.com/nodejs/node/blob/main/deps/v8/src/base/platform/platform-win32.cc
I see several options for implementation:
What variant is better? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
node-addon-api is intended for the 80% use case where you don't need more specific APIs from V8. If you truely need those APIs then you should likely use https://github.com/nodejs/nan an live with the fact you will need to recompile for each version of Node.js |
Beta Was this translation helpful? Give feedback.
node-addon-api is intended for the 80% use case where you don't need more specific APIs from V8. If you truely need those APIs then you should likely use https://github.com/nodejs/nan an live with the fact you will need to recompile for each version of Node.js