[nodejs] Re: Problems with my Native C++ Addon in Electron

2019-01-22 Thread Christopher Jones
On Thursday, January 10, 2019 at 2:48:04 AM UTC+11, Vicent Vidal wrote: > > Recently I developed my first native C++ Addon for node that works fine > with my node project (node version 10.15.0) > The Addon has been built using XCode, which project has been generating > using CMake. > > I´m

[nodejs] Re: Problems with my Native C++ Addon in Electron

2019-01-10 Thread Mikkel Wilson
I've had a similar problem with C++ addons. In one instance I had to change libraries ('iltorb' compression library) and in the other I had to use emscripten to transpile the C++ code into javascript so the V8 engine could use directly. It doesn't feel like a solution as much as a workaround,