I'm trying to integrate an external C++ library (I have access to the .so file as well as the header files) into my Node.js application.
After a lot of research my options are reduced to:
Writing a Node addon
Use node-ffi
From node-ffi's gitHub's definition I can't tell if it will or will not work directly on C++ libraries:
node-ffi is a Node.js addon for loading and calling dynamic libraries using pure JavaScript. It can be used to create bindings to native libraries without writing any C++ code.
So the questions I have are:
- Does option 1) imply rewriting in some way the external C++ library?
- Is node-ffi able to call directly to C++ libraries without any kind of C wrapper I'd have to write?
I'm no expert when it comes to C/C++ so if I missed something basic for you to be able to answer please let me know so I can improve my question.