본문 바로가기

분류 전체보기39

[GIT] submodule 추가, 삭제 방법 이미 구현된 프로젝트 (부모, 자식 구조) 에서 submodule을 추가, 삭제하는 것이 의외로 쉽지 않았다. 특히 자식을 먼저 git에 올린 후 부모에 submodule로 연결하고 부모를 commit 하는 케이스이다. 먼저 git 리포지터리의 부모쪽 .gitmodules만 수정하는 것으로는 제대로 된 부모, 자식 연결이 안된다. 명령어를 아래와 같이 실행해야 한다. git submodule add [자식git주소] [path명] 위 명령을 실행하면 부모쪽 폴더에 있는 .gitmodules 가 업데이트 되어야 한다. 이게 잘 안되거나 혹은 중간에 꼬여서 잘 안될때 다음과 같은 방법을 안내해본다 다음과 같은 오류가 발생하는 경우 '[모듈 폴더경로]' already exists in the index 1. .. 2022. 3. 2.
puppeteer npm install puppeteer시 오류나는 경우 > puppeteer@5.5.0 install C:\workspace\crawl\node_modules\puppeteer > node install.js ERROR: Failed to set up Chromium r818858! Set "PUPPETEER_SKIP_DOWNLOAD" env variable to skip download. Error: self signed certificate in certificate chain at TLSSocket.onConnectSecure (_tls_wrap.js:1502:34) at TLSSocket.emit (events.js:314:20) at TLSSocket._finishInit (_tls_wrap.j.. 2020. 12. 28.
React.js 시작하기 1. 리액트 관련 크롬 플러그인 설치 (React Developer Tools) -> 개발자도구 F12 를 통해 활용할 수 있음 2. 샘플 프로젝트 설치 (1-1) npm 설치 (1-2) 프로젝트 생성 커맨드(create-react-app) 설치 $sudo npm install -g create-react-app (2) github.com/facebook/create-react-app 참고해서 샘플 프로젝트(create-react-app) 설치 $npx create-react-app my-app $cd my-app npm start 3. 풍부한 Doc를 참고해라 (React 공식 홈페이지의 Doc 메뉴) https://reactjs.orgreactjs.org/docs/getting-started.html 2020. 11. 18.
skplanet의 msa 강좌 요약 2020. 10. 27.