Cannot find module 'uuid' error [Solved]
The “Cannot find module ‘uuid’” error occurs due to one of the following reasons:
-
The
uuid
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 ‘uuid’”, open the project root folder in your terminal and run the following command to install the uuid
module.
npm install uuid
For TypeScript, you need to install the typings:
npm install --save-dev @types/uuid
Now, you can import the uuid module like this in your project:
import { v4 as uuidv4 } from 'uuid';
console.log(uuidv4()); // ⇨ '3a2dib4d-4r2d-0bad-9bdd-2b1d7b3dcb6c'
If you want to install a particular version of ‘uuid’ module, you can use the following command.
npm install uuid@9.0.0
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 uuid
module in the dependencies
object.
"dependencies": {
//...
"uuid": "^9.0.0",
//.. other packages
}
Conclusion
The can’t find module uuid error occurs, if you’re trying to access a uuid
module that is not currently installed in your project. To solve the error install the uuid
module in your project directory by running the npm install uuid
command.
If you use the TypeScript, you should install the typings by using the following command npm i @types/yargs --save-dev
.