Categories
JavaScript Nodejs React

How to Solve the ‘create-react-app command not found’ Error

Spread the love

The ‘create-react-app command not found’ error occurs because we’re trying to run it locally when it’s not installed.

To fix that, we should run npm i -g create-react-app project-name to install it globally on our computer and run it.

Alternatively, we can also run npx create-react-app project-name to run it without install it.

In both cases, we need Node.js with NPM installed to run create-react-app.

If not, then we’ve to install it.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *