1
resposta

Erro ao tentar chamar create-react-app

Bom dia pessoal.

Estou tendo o seguinte problema ao chamar o create-react-app script:

PS C:\dev_test> .\node_modules\.bin\create-react-app myapp

Creating a new React app in C:\dev_test\myapp.

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

npm ERR! Maximum call stack size exceeded

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\rafael.mello\AppData\Roaming\npm-cache\_logs\2018-10-11T12_59_46_982Z-debug.log

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

Deleting generated file... package.json
Deleting myapp / from C:\dev_test
Done.

Meu ambiente é:

PS C:\dev_test> node -v
v8.11.3
PS C:\dev_test> npm -v
6.4.1

Alguém já passou por isso?

Valeu.

1 resposta

Oi Rafael, tudo bom?

Dei uma procurada nesse erro e parece que uma solução comum é tentar limpar o cache:

npm cache clean --force

Outra é remover a pasta de dependencias do npm (npm_modules) e rodar o npm install de novo, lembrando de limpar o cache antes da instalação.

Já tentou as duas?