Cannot find module 'lodash' error [Solved]
The “Cannot find module ‘lodash’” error occurs due to one of the following reasons:
-
The
lodash
module is not installed in the correct project directory. -
Using the module without installing it in the project.
-
Installed the module in a global context and trying to access in project local context.
To solve the error “Cannot find module ‘lodash’”, open the project root folder in your terminal and run the following command to install the lodash
module.
npm install lodash
For TypeScript, you need to install the typings using the below command:
npm install --save-dev @types/lodash
Now, you can import and use the lodash module in your project like this:
const _ = require('lodash/lodash');
const a = _.join(['a', 'b', 'c'], '~');
console.log(a); // => 'a~b~c'
If you want to install a particular version of ‘lodash’ module, you can use the following command.
npm install lodash@4.17.21
If you’re still facing the error, then follow the below steps to resolve it.
- Remove the
node_modules
folder andpackage-lock.json
file, inside your project directory by using the below command.
rm-rf node_modules package-lock.json
or you can remove it manually by right-clicking on it and select the delete
option.
- Clear the npm cache.
npm clean cache --force
- Re-install the node modules again by running the
npm install
command.
Verify now if you’ve installed it correctly or not by opening the package.json
file and check for lodash
module in the dependencies
object.
"dependencies": {
//...
"lodash": "^4.17.21",
//.. other packages
}
Conclusion
The can’t find module lodash error occurs, if you’re trying to access a lodash
module that is not currently installed in your project. To solve the error install the lodash
module in your project directory by running the npm install lodash
command.
If you use the TypeScript, you should install the typings by using the following command npm i @types/lodash --save-dev
.