Error: Cannot find module '../build/Debug/nodegit.node' after installation
See original GitHub issueHey I was curious about your Reacto project and gave it a try.
I cloned your repo and followed your installation steps, after yarn install
everything was looking fine but once I run yarn run electron:dev
I get the Error: Cannot find module '../build/Debug/nodegit.node'
error. This happens as well for me if I run the project separately as you recommand.
I’m running a macOS High Sierra v10.13.3 and the node version of this error is v8.9.4. Probably is some unhandled dependency but…
Here is the screenshot with the stacktrace:
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
cannot find module [Node npm Error Solved] - freeCodeCamp
This error occurs because of the following reasons: you're trying to import an item from a module you don't have installed in your...
Read more >How do I resolve "Cannot find module" error using Node.js?
Using npm install installs the module into the current directory only (in a subdirectory called node_modules ). Is app.js located under ...
Read more >How to resolve "Cannot find module" error in Node - Sabe.io
To fix the Cannot find module error, simply install the missing modules using npm . To so, you can use the following command:...
Read more >Fix Global Installs Not Working | "Cannot find module" error FIX
Getting " Cannot find module " after installing something globally (with -g)? Well, this video shows you how to fix global package/module ...
Read more >Can't find module after install (any module) - Node-RED Forum
Hi! I'm developing a project in which I got Node-RED embedded inside Node.js, so Node-RED starts up when I start the Node.js server....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Alright, I referenced this issue in the readme file. Thank you Luis 😃
I deleted the
node_modules
folder, installed Xcode command line tools andyarn install
. The classical ‘Have you tried to switch it off and on again?’