[React] npm err! missing script: start
🌭 해결 방법 먼저 터미널에 npm inint을 입력하면 package.json파일 만드는 과정이 나온다. 적절한 옵션을 선택 및 기입하고 Enter하고 넘어 갑니다! 그런 다음 package.json 파일에 들어갑니다! //package.json { "name": "react-study", "version": "1.0.0", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "react-scripts start" // 여기부분!!! }, "author": "", "license": "ISC", "description": "" } package.json 파일의 "scripts"개체에..
2023.03.16