맥북 에러 해결법 $npx create-react-app blog $npm start 위의 커맨드를 실행하였을 때 맥북에서 npm ERR! syscall access npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node\_modules' 에러가 뜨는 경우 폴더 수정 권한이 없다고 에러를 띄우는 것. 위의 에러는 /usr/local/lib/node_modules 라는 폴더에 수정권한을 주면 된다. $sudo chown \-R 맥북유저이름: 위에에러뜬경로 $sudo chown \-R $USER 위에에러뜬경로 혹은 sudo npx create-react-app blog VS Code extension 설치 Live Serv..