본문 바로가기

전체 글

(309)
[React] React 작업물을 github.io (github page)로 배포하기 개인용 프론트엔드 개발 포트폴리오를 만들다 보니 배포에 문제가 있어, 간단하게 github page를 활용하여 배포해보기로 했다.이전에 포트폴리오를 작업할때는 react build 파일을 js, css형식으로 수정하여 github 새폴더안에 넣고 배포하는 방식으로 작업하였으나, react-router를 사용하여 작업한 포트폴리오라 해당 방법은 작업이 수월하지 않았다.1. git에 작업한 파일이 있을 경우 => git clone 으로 복제 (새로 생성 => terminal 에서 npx create-react-app 생성 후 git init)2. 새 repository 생성:github >repositories > new버튼 클릭 > repository 이름 생성 후 guide를 따라 생성된 폴더에 git..
Dart 기초(2)-2 **출처 : 인프런 강좌 'Dart 언어 4시간만에 완전정복'의  2강 OOP 강의 내용을 정리한 script 입니다.1.상속void main() { print('-----fruit---------'); Fruit someFruit = Fruit(name:"망고",fruitCount:5); someFruit.sayName(); Sour sourFruit = Sour('오렌지',7); sourFruit.sayFruitCount(); sourFruit.sayEatme(); print('-----type comparison---------'); print(someFruit is Fruit); print(sourFruit is Sour); print(someFruit is Sour);}//..
WARNING: expo-cli has not yet been tested against Node.js v18.12.1. react native expo cli를 실행하다가 하단과 같은 에러가 발생하였다.WARNING: expo-cli has not yet been tested against Node.js v18.12.1.If you encounter any issues, please report them to https://github.com/expo/expo-cli/issuesexpo-cli supports following Node.js versions:* >=12.13.0 =16.0.0 여러가지 구글링 해보고 찾은 원인은,node 버전이 react-native expo cli의 node 버전과 맞지 않는 일종의 종속성 문제인 것 같았다.그래서 위의 내용 처럼 node를 삭제후 (기존 18.xx, 17.xx 버전 모두..
Error: listen EADDRINUSE: address already in use :::3000 port 3000이 이미 열려 있다는 에러 하단 명령어 터미널에 입력하여 해당하는 터미널 주소를 내려주면 됩니다 ! lsof -nti:NumberOfPort | xargs kill -9 //ex) lsof -nti:3000 | xargs kill -9
[docker+nestjs+aws]프로젝트 1주차 정리 *목적 : nestjs 기반의 crud, 인증, 결제, 채팅 기능을 구현 1. 기본 setting과 docker로 pgadmin 연결node, nest, docker 설치 후 터미널에 new nest 생성폴더명 //nvm 으로 node버전 변경하기(node version management)//nvm을 사용하려면 기존 사용하는 node의 전역적 모듈을 모두 삭제해주고 실행해야함______________________________________________________1.brew로 nvm 설치brew install nvm ______________________________________________________2.환경변수 설정mkdir ~/.nvm //~/에 .nvm 설치vi ~/...
nvm으로 node 버전 변경 -nvm 설치 (mac 기준 homebrew 사용)//nvm 으로 node버전 변경하기(node version management)//nvm을 사용하려면 기존 사용하는 node의 전역적 모듈을 모두 삭제해주고 실행해야함 ______________________________________________________1.brew로 nvm 설치 brew install nvm ______________________________________________________2.환경변수 설정 mkdir ~/.nvm //~/에 .nvm 설치 vi ~/.bash_profile //~/.bash_profile을 vi 편집기로 열고 환경 변수 설정//하단 세줄 입력후 esc + wq로 저장후 나오기export NVM_D..
[NEXTJS]cert로 https설정하기 참고:https://www.freecodecamp.org/news/how-to-set-up-https-locally-with-create-react-app/  How to Setup HTTPS Locally with create-react-appRunning HTTPS in development is helpful when you need to consume an API that is also serving requests via HTTPS. In this article, we will be setting up HTTPS in development for our create-react-app with our own SSL certificate. This guide is for macOS userwww.f..
remote: Permission to xxx.git. The Requested URL returned error: 403 (mac os) 기존 사용하는 git 계정이 아닌 새로 생성한 github 계정으로 접근시접근 권한에 관한 에러가 떠서 추후 추가적인 이슈가 있을 것을 대비하여 기록을 남겨 놓는다.fatal: unable to access 'https://github.com/xxx' : The Requested URL returned error: 403 github에서 push 시 토큰으로 인증하는 방법으로 변경 되어 일어나는 에러문구로 보이며, 해결 방법은 다음 과 같다.1.github > 프로필 > settings> personal access tokens > genarate new token으로 토큰을 생성한다.(이때 토큰은 따로 메모해두어야한다)2.생성한 토큰을 mac os 의 keychain에 접근하여 , github.com이..