Setting Paths in Vs Code

In order to improve the configuration of files such as c_cpp_properties.json, launch.json, and tasks.json, you should use the predefined variables. [Read More]
Tags: VsCode

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