vscode 7

ESLint, Prettier 설치

1. ESLint 코드의 오류나 버그, 스타일 점검 설치 후 명령어 입력 npm install -g -d eslint eslint --init 아래와 같이 설정 - To check syntax and find problems, and enforce code style - JavaScript modules (import/export) - React - TypeScript : Yes - Node - Use a popular style guide - Airbnb - JavaScript - Yes 2. Prettier 설치 후 명령어 입력 npm install --save-dev --save-exact prettier ESLint는 문법검사, Prettier는 코드 포맷을 맡게한다. npm install esl..

[Facebook + Expo] create-react-native-app {project name}

참고 : https://reactnative.dev/blog/2017/03/13/introducing-create-react-native-app Introducing Create React Native App · React Native Today we’re announcing Create React Native App: a new tool that makes it significantly easier to get started with a React Native project! It’s heavily inspired by the design of Create React App and is the product of a collaboration between Facebook and reactnative.d..

Expo 설치하기

참고 : https://docs.expo.dev/get-started/installation/ Installation - Expo Documentation Expo is an open-source platform for making universal native apps for Android, iOS, and the web with JavaScript and React. docs.expo.dev 1. node, watchman 설치 터미널 입력 brew install node brew install watchman 2. expo-cli 설치 터미널 입력 npm install --global expo-cli 3. iphone, android phone에 앱 설치 android에서는 expo, iphone에..

React Native 설치 및 시뮬실행

설치 공홈 : https://reactnative.dev/docs/environment-setup Setting up the development environment · React Native This page will help you install and build your first React Native app. reactnative.dev 1. Node, watchman 설치 터미널을 실행하여 입력. brew install node brew install watchman brew가 없다면 https://benoit.tistory.com/9 M1에서 Homebrew 설치 /bin/bash -c "$(curl -fsSL https://gist.githubusercontent.com/nrubin29/..