You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like we are having some problems trying to load a C++ addon built with Node 0.12.2. We have a module we are trying to proxyquire and it requires a C++ addon binary file for node. We get the error "Module did not self-register." on line 243 of proxyquire.js.
It looks like your code is not compatible with this version of Node based on sass/node-sass#653 which shows the same error and appears to be related to the version of Node. Would you be able to update your code to handle new versions of Node?
The text was updated successfully, but these errors were encountered:
The error you're seeing is related to the C++ addon module being incompatible with the version of node you're using.
Try the .noCallThru option and see if that works.
But since proxyquire doesn't do anything C++ related your problem couldn't be solved here afaik.
I'm quite certain the module is built with the same version of node. It looks like the .noCallThru option is the way to go anyways. As you can imagine we aren't that concerned about unit testing the C++ addons. Thanks for the help.
Hello,
It looks like we are having some problems trying to load a C++ addon built with Node 0.12.2. We have a module we are trying to proxyquire and it requires a C++ addon binary file for node. We get the error "Module did not self-register." on line 243 of proxyquire.js.
It looks like your code is not compatible with this version of Node based on sass/node-sass#653 which shows the same error and appears to be related to the version of Node. Would you be able to update your code to handle new versions of Node?
The text was updated successfully, but these errors were encountered: