React3 centos react-react-app부터 pm2까지 centos에서 react를 테스트해보기 위한 과정 react 설치 및 실행 npm install -global yarn yarn add create-react-app npx create-react-app project_name cd project_name yarn start -- 실행완료 포트 설정(react:3000) firewall-cmd --zone=public --permanent --add-port=3000/tcp firewall-cmd --reload firewall-cmd --zone=public --list-all HOST=0.0.0.0 npm run start -- 외부접속 성공 pm2설치 및 실행 npm install pm2 -g pm2 --name project_name start .. 2020. 9. 18. react prop types check with PropTypes https://blog.logrocket.com/validating-react-component-props-with-prop-types-ef14b29963fc/ 2020. 9. 18. npm, yarn start attempting to bind x86_64-apple-darwin npm create-react-app npm start 윈도우에서 작업한 react app을 mac에서 불러온 뒤 npm start를 해보면 다음과 같이 실행이 된다. Attempting to bind to HOST environment variable: x86_64-apple-darwin13.4.0 이렇게 나오게 된다. 그리고 내가 원했던 localhost:3000이 아니라 http://x86_64-apple-darwin13.4.0.:3000에서 실행이 되어버린다. 당연히 접속은 되지 않은다 이러한 상황은 .bashrc 또는 .bash_profile에 host가 환경변수로 저장되어 있어서 그런 것 같다. 그래서 package.json에 "open": "start http://localhost:3000".. 2020. 9. 17. 이전 1 다음