Does uninstalling nodejs removes npm and npx packages?

Viewed 84

I'm having some vulnerable errors which needs to have manual review when running react app. I tried to fix them but couldn't able to. Now, if I uninstall and reinstall the NodeJs does the above issue get solved??

1 Answers

NO, It only uninstalls node and npm. Installed packages remains as it is.

Related