카테고리 없음

visual studio code, git, nvm 설치

숲별 2024. 1. 19. 11:25
728x90

회사에서 준 컴퓨터가 분명히 누군가가 작업을 했었던 컴퓨터인 것 같은데

설치되어있는 게 없네..

 

이번 프로젝트에서 필요한 프로그램들 설치ㄱㄱ

아래 글에서 추천 한 extension 외에도 jest, git, git history도 추천(깃 크라켄을 쓴다면 깃렌즈도 추천)

 

https://spartacodingclub.kr/blog/vscode

 

Visual Studio Code 설치 및 사용법(한국어팩, Live Server, 파이썬 설치, 단축키 설정)

Visual Studio Code 설치 방법부터 초기 설정까지 한 번에 확인해 보세요.

spartacodingclub.kr

 

 

https://taewow.tistory.com/13

 

[GITHUB 입문] Git 설치하기(2.35.1 이상, 상세한 설치법)

[GITHUB 입문] 깃허브 사용법 - 2 Git 설치하기 Git과 GitHub에 관해 다룬 이전 글([GITHUB 입문] Git과 GitHub의 차이)을 작성하다 보니 한 가지 아쉬움이 있었습니다. 독자가 Git을 설치하여 직접 따라 하면

taewow.tistory.com

 

윈도우 터미널에서 아래 명령어를 입력하면 설치된 NVM의 버전을 확인 할 수 있다.

nvm version
nvm -v

 

nvm에 설치된 node의 리스트를 확인 할 수 있다.

nvm ls 
nvm install 17.5.0
nvm use 17.5.0
nvm uninstall 17.5.0
nvm alias default v12.18.2

 

 

https://jang8584.tistory.com/295#google_vignette

 

nvm 설치 및 node 설치 - 사용법(mac&windows)

1. windows 에서 설치 아래 경로로 이동해서 Windows용 nvm설치 파일을 다운로드 한다. nvm-setup.zip 파일을 다운로드 한다. https://github.com/coreybutler/nvm-windows/releases Releases · coreybutler/nvm-windows A node.js versio

jang8584.tistory.com