'Cannot find module 'caniuse-lite/dist/unpacker/agents' when running create react app
I am trying to create a new react application. I have node version 14.15.3 and npm version 6.14
Error: Cannot find module 'caniuse-lite/dist/unpacker/agents'
when running npx create-react-app
Solution 1:[1]
I ran into this issue while working on a Vue project and I fixed it by installing the caniuse-lite package again.
Just run npm i caniuse-lite in your terminal.
Then spin up your app again after the installation.
Solution 2:[2]
npm update @babel/preset-env
Works for me.
Solution 3:[3]
Had a very similar issue: npm i caniuse-lite fixed it.
error: index.js: Cannot find module '../lib/supported' Require stack:
- ..\node_modules\caniuse-lite\dist\unpacker\feature.js
- ..\node_modules\browserslist\node.js
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Dharman |
| Solution 2 | Henry Ecker |
| Solution 3 | Harsh Patel |
