본문 바로가기

테크/기타42

모바일앱 백엔드 개발 위한 google cloud platform 패턴 https://cloud.google.com/solutions/mobile/mobile-app-backend-services 2017. 12. 10.
[React Native] 안드로이드 기본 앱 개발 #2 (expo 플랫폼 사용, apk 작성, 배포) # Goal.- react native 기반 안드로이드 앱을 작성하고, apk 생성- expo 플랫폼 사용(react native 앱의 작성 및 배포 등을 도와주는 플랫폼, https://expo.io/) # 참고.- react native 안드로이드 기본앱 만들기 #1 (http://blog.sbahn.kr/877)- https://facebook.github.io/react-native/docs/getting-started.html- https://docs.expo.io/versions/latest/guides/building-standalone-apps.html (작성중) $ npm install -g exp { "expo": { "name": "Your App Name", "icon": "./pa.. 2017. 9. 30.
[React Native] 안드로이드 기본 앱 개발 #1 (expo 플랫폼 사용) # Goal- expo 플랫폼 기반에서, react native를 사용한 안드로이드 앱 작성하기.- expo는 react native의 안드로이드, ios 빌드/배포를 도와주는 플랫폼이다.(https://expo.io/) # 참고- https://facebook.github.io/react-native/docs/getting-started.html- https://docs.expo.io/versions/latest/guides/building-standalone-apps.html # 환경- 안드로이드 sdk 설치 필요 없음!- 윈도우- npm 필요(node.js 설치) # 순서 ## 설치 및 구동 $ npm install -g create-react-native-app npm 으로 creat-react-.. 2017. 9. 30.
[reactjs] firebase 에서 react.js 웹 호스팅하기 참고- https://www.codementor.io/yurio/all-you-need-is-react-firebase-4v7g9p4kf # Goal- 로컬에 생성한 react.js 웹 프로젝트를 firebase로 배포하고 테스트 # 준비- npm 설치되어있어야 함.- firebase 계정 및 프로젝트 생성 # 전체 순서-> react 프로젝트 생성-> 생성한 react 프로젝트를 firebase 프로젝트로 설정-> firebase 배포 # create-react-app 설치 및 빌드$ npm install -g create-react-app $ cd projects (프로젝트 상위폴더) $ create-react-app test_app $ cd test_app (react 프로젝트 이름) $ npm s.. 2017. 9. 26.