-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem in using module with node v7.4.0 (npm v4.0.5) #54
Comments
This looks like an issue with dependency node-fibers. Can you file over there?
… On Jan 24, 2017, at 2:25 AM, Dimitry Khan ***@***.***> wrote:
node-fibers
|
Ran into the same issue; as a temporary workaround I uninstalled |
@brenley Thank you. Actually I saw, the reason for this error is that when it runs with node v4.1.2 it expects the fibers.node in fibers\bin\win32-x64-46 and when it runs with node v7.4.0 it expects the fibers.node in fibers\bin\win32-x64-51. |
I could successfully install and use this module with node v4.1.2. But last week I have have upgraded my node to v7.4.0 (I understand that's a large upgrade with a single move, but I just thought to have the latest one). Then I can not use this module anymore. The app I could run earlier is erroring out as below. Interestingly it is searching the fibers module as a direct dependency of the app module (within the node_modules of the app) where as, as per this module it should be present (and is present) as dependent module of synchronize module (within the node_modules/synchronize/node_modules of the app).
**c:\workspace_PL\PL_PACreation>node app.js
There is an issue with
node-fibers
c:\workspace_PL\PL_PACreation\node_modules\synchronize\node_modules\fibers\bin\win32-x64-51\fibers.node
is missing.Try running this to fix the issue: C:\Program Files\nodejs\node.exe c:\workspace_PL\PL_PACreation\node_modules\synchronize\node_modules\fibers/build
c:\workspace_PL\PL_PACreation\node_modules\synchronize\node_modules\fibers\fibers.js:20
throw new Error('Missing binary. See message above.');
^
Error: Missing binary. See message above.
at Object. (c:\workspace_PL\PL_PACreation\node_modules\synchronize\node_modules\fibers\fibers.js:20:8)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
at Object. (c:\workspace_PL\PL_PACreation\node_modules\synchronize\sync.js:3:13)
at Module._compile (module.js:571:32)
c:\workspace_PL\PL_PACreation>cd ..
c:\workspace_PL>cd test
c:\workspace_PL\test>npm install synchronize
The text was updated successfully, but these errors were encountered: