Configure binding.gyp file in C++ Addon - Node.js

In order to use the C++ into the Node.js, you have the three options: Automation - call your C++ as a standalone app in a child process. Shared library - pack your C++ routines in a shared library (*.dll) and call those routines from Node.js directly through node-ffi. Node.js Addon... [Read More]
Tags: Node.js