Cannot find module ‘prettier’ error [Solved]
In this post we will give you information about Cannot find module ‘prettier’ error [Solved]. Hear we will give you detail about Cannot find module ‘prettier’ error [Solved]And how to use it also give you demo for it if it is necessary.
The “Cannot find module ‘prettier’” error occurs due to one of the following reasons:
The prettier module is not installed in the correct project directory.
Using the module without installing it in the project.
Installed the moudle in a global context and trying to access in project local context.
To solve the error “Cannot find module ‘prettier’”, open the project root folder in your terminal and run the following command to install the prettier module.
npm install --save-dev prettier
For yarn:
yarn add --dev prettier
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 root 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 prettier module in the devDependencies object.
{ "devDependencies": { "prettier": "^2.7.1", }}
Conclusion
To solve the can’t find module prettier error, install the prettier module in your project directory by running the npm install –save-dev prettier command and restart your development server.
For yarn use the following command:
yarn add --dev prettier
Hope this code and post will helped you for implement Cannot find module ‘prettier’ error [Solved]. 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