I tried doing:
npx create-react-app my-app
It complains:
UNABLE_TO_GET_ISSUER_CERT_LOCALLY
I got the same result with:
npm init react-app my-app
I tried doing:
npx create-react-app my-app
It complains:
UNABLE_TO_GET_ISSUER_CERT_LOCALLY
I got the same result with:
npm init react-app my-app
The quick solution is npm config set strict-ssl false, Try this command it will work!
npm config set registry http://registry.npmjs.org/
Thanks :).