Reactの環境構築をしたいのですがフォルダを作って
npx create-react-app tutorial
cd turotial
npm start
としてみたのですが npm start後、localhost3000を表示する途中で「このサイトにアクセスできません」と出てしまいます。
npmのバージョンは6.9.0,nodeのバージョンはv12.0.0です。
以下エラーメッセージです。解決策を教えていただければ幸いです。
Fatal error in , line 0
Check failed: U_SUCCESS(status).
FailureMessage Object: 00000066E18FD9C0npm ERR! code ELIFECYCLE
npm ERR! errno 3221225477
npm ERR! tutorial@0.1.0 start: react-scripts start
npm ERR! Exit status 3221225477
npm ERR!
npm ERR! Failed at the tutorial@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
json
1{ 2 "name": "my-app", 3 "version": "0.1.0", 4 "private": true, 5 "dependencies": { 6 "react": "^16.8.6", 7 "react-dom": "^16.8.6", 8 "react-scripts": "3.0.0" 9 }, 10 "scripts": { 11 "start": "react-scripts start", 12 "build": "react-scripts build", 13 "test": "react-scripts test", 14 "eject": "react-scripts eject" 15 }, 16 "eslintConfig": { 17 "extends": "react-app" 18 }, 19 "browserslist": { 20 "production": [ 21 ">0.2%", 22 "not dead", 23 "not op_mini all" 24 ], 25 "development": [ 26 "last 1 chrome version", 27 "last 1 firefox version", 28 "last 1 safari version" 29 ] 30 } 31} 32

回答1件
あなたの回答
tips
プレビュー