> For the complete documentation index, see [llms.txt](https://aeri-choi.gitbook.io/til/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aeri-choi.gitbook.io/til/dev/react.js/setting.md).

# 개발 환경 설정하기

![sdsd](/files/-M-djWfOUJjdf8E_szEl)

리액트를 학습하기 앞서 먼저 개발 환경을 셋팅하는 법을 알아보겠다.\
VS Code나 Git은 설치되어 있는 관계로 이에 대한 설명은 생략 하겠다.

### 01. Version: Windows

#### 1-1. Node 설치하기&#x20;

[Node 다운로드](https://nodejs.org/ko/)

![](/files/-M-djwdrSYUd05jcj17E)

#### 1-2. 설치 명령어

```bash
/* react 설치 */
npm init react-app <프로젝트명>
```

#### 1-3. Git 명령어&#x20;

```bash
git init
git remote add origin <URL>
git config --global user.name "name"
git config --global user.email "email"

git status
git add .
git commit -m "message"
git push origin master
```

#### 참조

* [자습서: React 시작하기](https://ko.reactjs.org/)
* [리액트를 다루는 기술(개정) - 길벗](https://m.yes24.com/Goods/Detail/62597469)&#x20;
* [누구든지 하는 리액트: 초심자를 위한 react 핵심 강좌 - 인프런 ](https://www.inflearn.com/course/react-velopert/dashboard)
* [누구든지 하는 리액트](https://react-anyone.vlpt.us/)
* [벨로퍼트와 함께하는 모던 리액트](https://react.vlpt.us/)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://aeri-choi.gitbook.io/til/dev/react.js/setting.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
