How do I check my npm installation and configuration?

Responsive Ad Header

Question

Grade: Education Subject: Support
How do I check my npm installation and configuration?
Asked by:
53 Viewed 53 Answers
Responsive Ad After Question

Answer (53)

Best Answer
(278)
Use the command `npm config get prefix` to check where npm installs global packages. Also, use `npm config get global` to see if `create-react-app` is installed globally. You can then try to manually reinstall `create-react-app` globally with `npm install -g create-react-app`.