Cannot find module 'uuid' error [Solved]
The “Cannot find module ‘uuid’” error occurs due to one of the following reasons:
-
The
uuidmodule 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 uuidFor TypeScript, you need to install the typings:
npm install --save-dev @types/uuidNow, 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.0If you’re still facing the error, then follow the below steps to resolve it.
- Remove the
node_modulesfolder andpackage-lock.jsonfile, inside your project directory by using the below command.
rm-rf node_modules package-lock.jsonor 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 installcommand.
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.


