본문 바로가기

반응형

분류 전체보기

(39)
리액트에서 부트스트랩 사용하기 1. 아래의 사이트에 들어간다.https://getbootstrap.com/docs/5.3/getting-started/download/ DownloadDownload Bootstrap to get the compiled CSS and JavaScript, source code, or include it with your favorite package managers like npm, RubyGems, and more.getbootstrap.com  2. 아래의 내용을 복사한다.  3. 복사한 내용을 index.html의 header 태그 안에 붙여넣기 한다. 끝!   1. 인텔리제이에 들어가서 하단에 터미널을 열고 Command Prompt를 선택한다.  2. 아래 두 개의 명령어를 입력한다.npm-i..
안드로이드 스튜디오 Logcat 한글 깨짐 해결 1. shift 두 번 눌러서 Edit Custom VM Options...를 검색한다.    2. 아래의 내용을 추가한 후 모든 안드로이드 프로젝트 파일을 닫고 다시 열어주면 된다.-Dfile.encoding=UTF-8
안드로이드 스튜디오 설치 및 시작하기 1. 아래의 사이트에 접속한다.https://developer.android.com/studio?hl=ko#get-android-studio Android 스튜디오 및 앱 도구 다운로드 - Android 개발자  |  Android Studio  |  Android DevelopersAndroid Studio provides app builders with an integrated development environment (IDE) optimized for Android apps. Download Android Studio today.developer.android.com   2. 본인 PC에 맞는 걸로 다운로드한다. 나는 windows 권장 적힌 거 다운받음   3. 다운로드한 파일을 실행하여 모두 ..
인텔리제이에서 리액트 구성편집 1. 구성 편집 클릭   2. 플러스 버튼 눌러서 npm 선택  3. 해당 내용 입력 및 선택
react-app, vite 생성하기 cd C:\fullstack405\react npx create-react-app test1 cd test1 npm start   npx create-vite test2 cd test2 npm install npm run dev ------------------------------
Node.js와 npm 설치하기 1. 아래의 사이트에 접속한다. https://github.com/coreybutler/nvm-windows?tab=readme-ov-file GitHub - coreybutler/nvm-windows: A node.js version management utility for Windows. Ironically written in Go.A node.js version management utility for Windows. Ironically written in Go. - coreybutler/nvm-windowsgithub.com 2. 하단의 Download Now 클릭 3. 하단의 nvm-setup.exe를 눌러 설치한다. 4. 설치된 파일을 실행하여 모두 기본값으로 설치를 진행한다. 5. cmd창에..
postman 다운로드하기 1. postman 사이트에 접속한다.https://www.postman.com/ Postman API Platform | Sign Up for FreePostman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.www.postman.com   2. 운영체제에 맞는 버전을 다운로드한다.  3. 다운로드된 파일을 실행하여 로그인 없이 진행한다.   4. POST로 할 경우
MyBatis 사용하기 1. MyBatis 사이트에 접속한다.https://mybatis.org/mybatis-3/ko/getting-started.html mybatis – 마이바티스 3 | 시작하기 mybatis.org   2. 하단의 매핑된 SQL 구문 살펴보기 부분을 복사한다.   3. sql.xml 파일에 붙여넣고 select 부분은 지운다.

반응형