I am having trouble with creating a react app (windows)
NPM Version: 6.14.11
Node version: 14.15.4
Whenever I run npx create-react-app my-app I am missing the folders that are usually created. I have my node_modules folder and my package and package-lock JSON files, but I am missing everything else (missing src, public, etc).
When I try to run npm start, the script isn't found.
I have already read the Getting Started guide where it says to try npm uninstall -g create-react-app and I have already updated npm and node. I still cannot get these folders to populate. Any ideas?
npm uninstall -g create-react-appbut may try using this commandnpm rm -g create-react-appthen installing it again - ousecTicnpm i -g create-react-appand runningcreate-react-app <yourProjectname>- PalPalash