"Cannot find module 'lodash/_overRest'"
See original GitHub issueWhat version of async are you using? 2.1.4
Which environment did the issue occur in (Node version/browser version) Only in circle-ci (travis-ci is ok, Mac OS X is ok too)
What did you do? Please include a minimal reproducable case illustrating issue. Only need to ‘rerun’ circle-ci tests here: https://circleci.com/gh/libp2p/js-libp2p-webrtc-star/224
What did you expect to happen?
At first I would expect it to run just fine, but second, I would expect to be able to find a reference of what is lodash/_overRest
, but I’ve been scavaging through lodash and issues on the web, and it seems no one else is hitting this problem or has a reference where this module exists.
What was the actual result?
Message:
Cannot find module 'lodash/_overRest'
Details:
code: MODULE_NOT_FOUND
Stack:
Error: Cannot find module 'lodash/_overRest'
Issue Analytics
- State:
- Created 7 years ago
- Comments:14
Top Results From Across the Web
Cannot find module 'lodash/_overRest' · Issue #3630 - GitHub
Hi @jdalton , I've got the same problem, but I'm not sure I understand how to solve it. What exactly do I do...
Read more >Cannot find module 'lodash/_overRest' - npm - Stack Overflow
Cannot find module 'lodash/_overRest'. I am using npm ver 5.2 and have uploaded the screenshots of the errors and json file.
Read more >Cannot find module 'lodash' error | bobbyhadz
If the "Cannot find module 'lodash'" error persists, open your package.json file and make sure it contains the lodash package in the dependencies...
Read more >Cannot find module 'lodash' error [Solved] - Reactgo
The “Cannot find module 'lodash'” error occurs due to one of the following reasons: The module is not installed in the correct project…...
Read more >Cannot Find Module 'Lodash/_Overrest' - ADocLib
237nteract: Module not found: Error: Can't resolve 'spawn-sync' in 951/986 modules 35 activektop\node_modules\lodash\_overRest.js 68% [1] building modules ...
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
I encountered the same issue (async version: 2.1.4 / env: Ubuntu 16.04) And I think the reason is that
package.json
requires{ lodash: '^4.14.0' }
, which is matched by the latest minor versions in which_overRest.js
was removed. It’s rightfully not considered a breaking change as this is an internal file.I am encountering this error and I am not using async module directly. In my app, these are the modules I am using:
I am using latest
npm
and nodejs LTS versions.