'2020/07'에 해당되는 글 1건

  1. 2020.07.15 프로젝트 생성

참고 사이트.

expo site : http://expo.io 

 

Expo

Expo is an open-source platform for making universal native apps for Android, iOS, and the web with JavaScript and React.

expo.io

 

참고 문서.

설치 : https://docs.expo.io/

 

Introduction to Expo - Expo Documentation

Expo is a framework and a platform for universal React applications. It is a set of tools and services built around React Native and native platforms that help you develop, build, deploy, and quickly iterate on iOS, Android, and web apps from the same Java

docs.expo.io

 

 

앱 설치

$ npm install --global expo-cli

 

프로젝트 실행.

$ expo init {프로젝트 명}

 

바로 실행 (안드로이드, iOS, 웹 모두 실행)

$ npm start 

 

각 플랫폼별 실행.

$ npm run android

$ npm run ios

$ npm run web

 

expo port 변경.

프로젝트 루트 폴더에, .exprc 파일을 만든다. 그리고 아래와 같이 입력한다.

{
  "manifestPort": 8080
}

 

로컬 ip 입력

 

Posted by 창업닉군
,