개발자 강화/기타

윈도우 개발 환경 세팅

suyeonshim 2024. 9. 9. 00:31

내 본체인 엘지 그램이 근 2년간 용량 부족에 시달리고 있어 코딩이 불가능한 상태..

후배에게 삼성 노트북을 빌렸다...

 

세팅을 근 2개월 정도 미루다가 오늘에서야 CV 사이트 레포를 만들면서 세팅함

 

그리고... 윈도우 개발자들이여 당당해져라

맥북을 안써도 개발할 수 있다!!!(물론 돈 모아서 나도 맥북살거지만..)

 

네이버 인턴할 때도 업무 기기로 그램을 받아서 세팅했고...

두 달만에 또 삼성 노트북에 개발 환경을 세팅하는 김에...

원활한 개발을 위해 뭘 해야 하는지 적어 두고, 나중에 또 쓸 일 있음 참고하겠음

 

0. 포멧

- 후배가 노트북을 포멧해서 줬다. 이제 0부터 시작하는 개발환경 세팅...

 

1. 윈도우 설치

- 윈도우 노트북이 시키는 대로 다 설치한다

 

2. chrome 설치 후 구글 주계정 로그인

 

3. vscode 설치

- https://code.visualstudio.com/download

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

그냥 귀찮아서 기본 세팅으로 설치함

 

4. vscode에 github 계정 연결(로그인)

- 내 계정에 연결된 확장프로그램들이 알아서 깔릴 것

- 코파일럿, prettier, eslint, git blame, git lens, git graph, 그 외 본인 주사용 언어 익스텐션 설치 강추

 

5. git bash 설치

- git clone을 하려고 했는데, 노트북이 아방하게 "git"이 뭐에요..? 라고 묻길래...

- https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

- 귀찮아서 기본 설정으로 설치함

 

6. node 설치

- git 설치하고 나니까 npm이 뭐냐고 묻는 아방한 노트북

- https://nodejs.org/en/

 

Node.js — Run JavaScript Everywhere

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

- LTS 버전으로 다운받아서 그냥 실행하면 알아서 설치해줌

 

7. yarn 설치

- 난 yarn만 쓰기 때문에 따로 설치해야됨

- npm install -g yarn

 

8. git commit을 위한 user.email 설정

git config --global user.email "your@email.com"

 

9. 그 외 본인이 건드려보다 삑나는 것들 설정해주시기

 

이렇게 하면 일단 기존 레포 클론 받아서 실행하는 데는 문제 없을 듯

 

작성 24.09.09. 오전 12:30