前提・実現したいこと
create-react-app の実行時にエラーが発生しており、解決できません...
ご教授願います。。。
発生している問題・エラーメッセージ
node -e "try{require('./postinstall')}catch(e){}"
npm ERR! Maximum call stack size exceeded
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\username\AppData\Roaming\npm-cache_logs\2020-05-04T15_56_34_118Z-debug.log
Aborting installation.
npm install --save --save-exact --loglevel error react react-dom react-scripts@0.9.x has failed.
Deleting generated file... node_modules
Deleting generated file... package.json
該当のソースコード
試したこと
https://qiita.com/k-murayama/items/014e3745290208b92af1
こちらのページの通り、
npm install -g create-react-app
create-react-app react-sampleと
作業を進めていると、create-react-appで上記のようなエラーが出ました。
その後、create-react-appをアンインストールした後
https://qiita.com/rspmharada7645/items/25c496aee87973bcc7a5
のページ通りに
npm install --global yarn
yarn global add create-react-app
create-react-app helloworld と
作業を進めると、今度はcreate-react-appで、
「内部コマンドまたは外部コマンド、操作可能なプログラムまたはバッチ ファイルとして認識されていません。」
と表示されてしまいました。
Nodeのバージョンアップ,create-react-appの再インストールを行いましたが、同様の結果になりました。
npm cache clean --forceを試してみても同様でした...
補足情報(FW/ツールのバージョンなど)
node -v
v12.16.3
npm -v
6.9.0
windows10
あなたの回答
tips
プレビュー