Home > Blockchain >  why doesn't npx create-react-app work on git bash, while on cmd it does?
why doesn't npx create-react-app work on git bash, while on cmd it does?

Time:08-19

So, I created the directory using git bash by npx create-reace-app but this doesn't work. Strangely, on cmd it works.

This is quite annoying.

CodePudding user response:

Maybe you need to install node and npx on Git bash

CodePudding user response:

Is the error something like "Command npx not found" or something like that? Maybe you should consider configuring the PATH environment variable.

  • Related