DEV Community

Discussion on: Create Your First React Desktop Application in Electron with Hot-Reload

Collapse
 
yannick_rest profile image
Yannick Rehberger

npx did not work for me on macOS:

npx create-react-app foobar

My npm version is 6.14.4, so it's greater then 5.2 and npx should work, right?
However, the old way worked:

npm install -g create-react-app
create-react-app foobar