6
respostas

Erro na instalação com npx

Vi que alguém já teve esse erro mas não consegui resolver com as respostas que deram pra ele. alguém pode me ajudar?

PS C:\Users\FRANCIS\Documents\Sistemas\daluz\react-alura> npx create-react-app curso-react-alura

Creating a new React app in C:\Users\FRANCIS\Documents\Sistemas\daluz\react-alura\curso-react-alura.

Installing packages. This might take a couple of minutes. Installing react, react-dom, and react-scripts with cra-template...

npm ERR! Unexpected end of JSON input while parsing near '...Q9hLbaVkxfiSuv97Wt2tF'

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\FRANCIS\AppData\Roaming\npm-cache_logs\2020-07-17T16_03_42_862Z-debug.log

Aborting installation. npm install --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed.

Deleting generated file... package.json Deleting curso-react-alura/ from C:\Users\FRANCIS\Documents\Sistemas\daluz\react-alura Done.

6 respostas

Oi, Francis, tudo bem?

Você seguiu o passo correto, vide: https://github.com/facebook/create-react-app

Mas pesquisando sobre esse erro, vi uma possível solução: https://github.com/facebook/create-react-app/issues/9038

utilizar o comando npm cache clean --force para limpar o cache das dependências e criar novamente.

Me fala se der certo!

Sim, Laís, eu tentei isso e nao deu também, mas obrigado

Oi, Francis!

Qual foi o erro que você obteve dessa vez? Coloca aqui para que possa te ajudar melhor.

Oi Laís, é isso que aparece

C:\Users\FRANCIS\Documents\Alura\react>npx create-react-app curso-react-alura

Creating a new React app in C:\Users\FRANCIS\Documents\Alura\react\curso-react-alura.

Installing packages. This might take a couple of minutes. Installing react, react-dom, and react-scripts with cra-template...

npm ERR! Unexpected end of JSON input while parsing near '...Q9hLbaVkxfiSuv97Wt2tF'

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\FRANCIS\AppData\Roaming\npm-cache_logs\2020-07-28T12_26_01_814Z-debug.log

Aborting installation. npm install --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed.

Deleting generated file... package.json Deleting curso-react-alura/ from C:\Users\FRANCIS\Documents\Alura\react Done.

Quando tento instalar ele globalmente aparece esse

C:\Users\FRANCIS\Documents\Alura\react>npm i -g create-react-app curso-react-alura npm ERR! code E404 npm ERR! 404 Not Found - GET https://registry.npmjs.org/curso-react-alura - Not found npm ERR! 404 npm ERR! 404 'curso-react-alura@latest' is not in the npm registry. npm ERR! 404 You should bug the author to publish it (or use the name yourself!) npm ERR! 404 npm ERR! 404 Note that you can also install from a npm ERR! 404 tarball, folder, http url, or git url.

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\FRANCIS\AppData\Roaming\npm-cache_logs\2020-07-28T12_30_16_377Z-debug.log

Oi, Francis!

Vamos tentar o seguinte:

- Deleta a pasta `node_modules` que foi criada no diretório do projeto;
- Deleta o arquivo `package-age.json`;
- E dá o `npm install` novamente; 

Testa novamente e me fala se conseguiu!