Category Archives: react

Javascript Flow ? 사용예시

가끔 오픈소스를 보다보면 javascript 변수앞에 “?”선언 되어있는 경우가 있었는데 별생각 없이 지나치다 오늘에서야 그게 무슨 뜻인지 알았네.. =_=; https://flow.org/en/docs/types/primitives/?fbclid=IwAR1GTshwL0-EbO36zGJRP8asQi8ULWnbXLlw7-mbaSK4ygLWx8T4Oc6z8rU#toc-maybe-types

Posted in Javascript, react | Leave a comment

react-native 실행문제

https://stackoverflow.com/questions/43425754/react-native-error-packager-cant-listen-on-port-8081

Posted in react | Leave a comment

react-native 설정 node 버전문제

https://facebook.github.io/react-native/docs/getting-started.html 위문서를 따라하다 node버전 때문에 문제가 생기는 경우가 많다. 기존에 node가 깔려있는 환경이라면 node 버전을 꼭 확인 해야됨. $ node -v react-native는 node 8.x이상의 버전에서 돌아갑니다. 그 이하버전인 경우 node를 삭제하고 다시 설치해야됩니다. 기존 노드 링크 삭제 $ brew unlink … Continue reading

Posted in Javascript, react | Leave a comment

react-native doc

리액트 네이티브 관련 전반적 내용 https://facebook.github.io/react-native/docs/getting-started.html  

Posted in react | Leave a comment