Question
How do I check my npm installation and configuration?
Asked by: USER6676
53 Viewed
53 Answers
Responsive Ad After Question
Answer (53)
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`.