Mac npm start ERR_SSL_PROTOCOL_ERROR 해결 Mac 환경입니다. react에서 https 설정 후 npm start 실행하면 ERR_SSL_PROTOCOL_ERROR 가 나올 때가 있습니다. package.json에 아래와 같이 설정하면 해결됩니다. "start": "export HTTPS=true&&SSL_CRT_FILE=cert.pem&&SSL_KEY_FILE=key.pem react-scripts start", Others/ETC. 2022.01.16
Mac npm install 오류 해결 mac에서 npm install시 오류가 날때가 있습니다. 아래 2개 커맨드를 차례로 실행시키시면 됩니다. sudo rm -rf /Library/Developer/CommandLineTools xcode-select --install 설치가 잘 되었는지 확인해봅니다. xcode-select --print-path 아래와 같이 Path가 나오면 다시 npm install 을 수행하면 됩니다. /Library/Developer/CommandLineTools * 참고 https://jojoldu.tistory.com/566 Others/ETC. 2022.01.13
아이피, 포트번호 확인 및 제거 포트번호 cmd 창에서 아래 코드를 입력하면 현재 활성화되어있는 포트 번호가 나옵니다. netstat -ano 포트 번호를 삭제하려면 pid 이용하면 됩니다. taskkill /f /pid 0000 아이피 아이피를 확인하려면 cmd 창에 아래 코드를 입력하면 됩니다. ipconfig "IPv4 주소"라는 것이 있는데 localhost 대신 사용 가능합니다. Others/ETC. 2021.12.02