-
I am having issues attempting to create a react application. I have tried the solutions listed under node.js's issue but to no avail. Here is what happens when I attempt to create a react app:
Again, I have tried both solutions and I am still having this issue. I have tried both of the latest node.js versions (LTS and current) and still got this issue. Here is a look into the log file:
I wasn't having this issue a few weeks ago but am suddenly having it now. I can't remember what, if anything, that I have done to my node.js or npm for that matter to warrant this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
SolvedI followed the instructions given in https://stackoverflow.com/a/61708736/7835042 and my issues was resolved. More specifically, I did the following:
Although before hand I also tried shortening my environment variables too, and then re-installed node js (current 15.3.0). Although, this didn't fix my issue I'm pretty sure because until I ran those 2 commands above was I able to run |
Beta Was this translation helpful? Give feedback.
Solved
I followed the instructions given in https://stackoverflow.com/a/61708736/7835042 and my issues was resolved. More specifically, I did the following:
npm rm -g create-react-app
npm install create-react-app
npx create-react-app my-react-app
Although before hand I also tried shortening my environment variables too, and then re-installed node js (current 15.3.0). Although, this didn't fix my issue I'm pretty sure because until I ran those 2 commands above was I able to run
npx create-react-app
with no problem.