close

[Solved] npm ERR! Unexpected end of Json input while parsing near

I am trying to run npx create-react-app myapp command But I am facing the following error npm ERR! Unexpected end of Json input while parsing near in ReactJS. We are going to Learn about All Possible Solutions So Lets Get Start with This Article.

How npm ERR! Unexpected end of Json input while parsing near Error Occurs ?

I am trying to run npx create-react-app myapp command But I am facing the following error.

npm ERR! Unexpected end of Json input while parsing near ‘…eact-app/-/create-rea’

Install for create-react-app@latest failed with code 1**

So here I am writing all possible solutions that I have tried to resolve this error.

How To Solve npm ERR! Unexpected end of Json input while parsing near Error ?

  1. How To Solve npm ERR! Unexpected end of Json input while parsing near Error ?

    To Solve npm ERR! Unexpected end of Json input while parsing near Error You can Also Globally install create-react-app. to do so Just run this command in your terminal: npm install -g create-react-app Now, You can Create your new reactjs project using this command: npx create-react-app my-app Then run your project with this command: cd my-app and npm start Hope, Now your error must be solved.

  2. npm ERR! Unexpected end of Json input while parsing near

    To Solve npm ERR! Unexpected end of Json input while parsing near Error You Have to Install create-react-app first and then you will be able to create a new project First of all Run this command in your terminal: npm init Now, Install create-react-app by running this command: npm install create-react-app Then, you will be able to create your reactjs app using this command: npx create-react-app myapp Now, Your error must be solved. Thank You.

Solution 1: install create-react-app

You Have to Install create-react-app first and then you will be able to create a new project First of all Run this command in your terminal.

npm init

Now, Install create-react-app by running this command.

npm install create-react-app

Then, you will be able to create your reactjs app using this command.

npx create-react-app myapp

Now, Your error must be solved. Thank You.

Solution 2: Globally install create-react-app

You can Also Globally install create-react-app. to do so Just run this command in your terminal.

npm install -g create-react-app    

Now, You can Create your new reactjs project using this command.

npx create-react-app my-app     

Then run your project with this command.

cd my-app      
npm start  

Hope, Now your error must be solved.

Solution 3: Clean npm cache

Just try to Clean npm cache using this command.

npm cache clean --force

Now, Re-try to create your project.

npx create-react-app myapp

Summary

It’s all About this error. Hope We solved Your error. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?

Also, Read

Leave a Comment