Fix – Cannot find module ‘ejs’ error in Node.js
In this post we will give you information about Fix – Cannot find module ‘ejs’ error in Node.js. Hear we will give you detail about Fix – Cannot find module ‘ejs’ error in Node.jsAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to fix the cannot find module ‘ejs’ error inNode.js.
This error occurs due to the following reasons:
The ejs module is not installed in the correct project directory.
Using the module without installing it in the project.
Installed in a global context and trying to access in project local context.
To fix the error, open the project root folder in your terminal and run the following command to install the ejs module.
npm install ejs
If you want to install a particular version of ‘ejs’ use the following command.
npm install ejs@3.1.8
If you’re still facing the error, then follow the below steps to resolve it.
- Remove the node_modules folder and package-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 selecting 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 ejs module in the dependencies object.
"dependencies": { //... "ejs": "^3.1.8", //.. other packages }
Conclusion
The Cannot find module ejs error occurs, if you’re trying to access a ejs module that is currently not installed in your project. To solve the error install the ejs module using the npm install ejs command.
Hope this code and post will helped you for implement Fix – Cannot find module ‘ejs’ error in Node.js. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs