# Proje Kurulumu ve Hazırlanması

React ile bir proje kurulumu ve hazırlanması için aşağıdaki adımları takip edebilirsiniz:

1. Node.js kurulumu: React projesi oluşturmak ve çalıştırmak için Node.js'in yüklü olması gerekmektedir. Node.js'i resmi web sitesinden indirip kurabilirsiniz.
2. Yeni bir React projesi oluşturma: React projesi oluşturmak için, Node.js paket yöneticisi olan npm (Node Package Manager) kullanabilirsiniz. Terminalde, yeni bir proje klasörü oluşturun ve aşağıdaki komutu çalıştırın:

```bash
npx create-react-app my-app
```

Bu komut, yeni bir React projesi oluşturur ve gerekli bağımlılıkları yükler.

3. Proje klasörüne gitmek: Proje klasörüne gitmek için aşağıdaki komutu kullanabilirsiniz:

```bash
cd my-app
```

4. Projenin çalıştırılması: Oluşturulan React projesini çalıştırmak için aşağıdaki komutu kullanabilirsiniz:

```bash
# projeyi çalıştırmak için
npm start

# hali hazırda App.test.js test dosyamızı/testlerimizi çalıştırmak için
npm run test
```


---

# Agent Instructions: 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:

```
GET https://furkans-organization-1.gitbook.io/modern-frontend-testing-notlari/ilk-adim/proje-kurulumu-ve-hazirlanmasi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
