Solved – ‘react-scripts’ is not recognized as internal or external
In this post we will give you information about Solved – ‘react-scripts’ is not recognized as internal or external. Hear we will give you detail about Solved – ‘react-scripts’ is not recognized as internal or externalAnd how to use it also give you demo for it if it is necessary.
The “‘react-scripts’ is not recognized as an internal or external command, operable program or batch file” error occurs due to one of the following reasons:
The react-scripts package is missing in your correct project directory.
Using the package without installing it in the project.
Installed the package in a global context and trying to use in project local context.
To solve the error “‘react-scripts’ is not recognized as an internal or external command, operable program or batch file”, open the project root folder in your terminal and run the following command to install the react-scripts package.
npm install react-scripts
If you’re using the yarn as your package manager, then you can use the below command to install it:
yarn add react-scripts
If you’re still facing the error, then follow the below steps to resolve it.
- Remove the node_modules folder and package-lock.json file, inside your project directory by using the below command.
rm-rf node_modules package-lock.json
or you can remove it manually by right-clicking on it and select the delete option.
- Clear the npm cache.
npm clean cache --force
- Re-install the node modules again by running the npm install command.
Verify now if you’ve installed it correctly or not by opening the package.json file and check for moment module in the dependencies object.
"dependencies": { //... "react-scripts": "^5.0.1", //.. other packages goes here }Conclusion
The ‘react-scripts’ is not recognized as internal or external command error occurs, if you’re trying to use a react-scripts module that is not currently installed in your project. To solve the error install the react-scripts package in your project directory by running the npm install react-scripts command and try clearing the npm cache.
Hope this code and post will helped you for implement Solved – ‘react-scripts’ is not recognized as internal or external. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs
