This issue usually comes when node js and npm versions are not compatible.To fix this in Ubuntu (my version was 20)
- Uninstall node js and npm.
- apt remove npm
- apt remove nodejs
- which node (it will return node js files path)
- Delete node directory
- Install NVM
- Install node
- nvm install e.g. nvm install 8.16
- Above command will itself install node js and its compatible NPM.