> For the complete documentation index, see [llms.txt](https://docs.kayaknet.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kayaknet.io/getting-started/quick-start.md).

# Quick Start

Get up and running with KayakNet in under 5 minutes.

## Step 1: Download (30 seconds)

### Linux

```bash
curl -L -o kayakd.zip http://203.161.33.237/kayakd-v0.1.28-linux-amd64.zip
unzip kayakd.zip
chmod +x kayakd-v0.1.28-linux-amd64
```

### Windows (PowerShell)

```powershell
curl.exe -o kayakd.zip http://203.161.33.237/kayakd-v0.1.28-windows-amd64.zip
Expand-Archive -Force kayakd.zip .
```

### macOS

```bash
curl -L -o kayakd.zip http://203.161.33.237/kayakd-v0.1.28-darwin-amd64.zip
unzip kayakd.zip
chmod +x kayakd-v0.1.28-darwin-amd64
```

## Step 2: Run (10 seconds)

### Linux/macOS

```bash
./kayakd-v0.1.28-linux-amd64 --bootstrap 203.161.33.237:4242 --proxy --name your-name
```

### Windows

```powershell
.\kayakd-v0.1.28-windows-amd64.exe --bootstrap 203.161.33.237:4242 --proxy --name your-name
```

You should see:

```
╔════════════════════════════════════════════════════════════╗
║                  KayakNet Anonymous Network                 ║
╠════════════════════════════════════════════════════════════╣
║  Node ID:  abc123...                                       ║
║  [+] Browser proxy: HTTP 8118, SOCKS5 8119                 ║
║  [+] Homepage: http://home.kyk                             ║
╚════════════════════════════════════════════════════════════╝
```

## Step 3: Configure Browser (2 minutes)

### Firefox (Recommended)

1. Settings → Search "proxy" → Settings...
2. Select "Manual proxy configuration"
3. HTTP Proxy: `127.0.0.1` Port: `8118`
4. Check "Also use this proxy for HTTPS"
5. OK

### Chrome

1. Install "Proxy SwitchyOmega" extension
2. New Profile → HTTP `127.0.0.1:8118`
3. Apply → Select profile

## Step 4: Browse KayakNet (Instant!)

Open your browser and go to:

| URL                 | What It Is  |
| ------------------- | ----------- |
| `http://home.kyk`   | Homepage    |
| `http://chat.kyk`   | Chat        |
| `http://market.kyk` | Marketplace |

## You're Done!

### What's Next?

* **Chat**: Join `#general` on `chat.kyk`
* **Marketplace**: Browse listings on `market.kyk`
* **Domains**: Register your .kyk domain

### Quick Commands

```bash
# Run in background (Linux/macOS)
nohup ./kayakd --bootstrap 203.161.33.237:4242 --proxy &

# Check if running
curl --proxy http://127.0.0.1:8118 http://home.kyk

# Stop the node
pkill kayakd
```

### Troubleshooting

**"Address already in use"**

```bash
# Find and kill existing process
lsof -i :4242
kill <PID>
```

**"Connection refused"**

* Make sure node is running
* Check proxy port is 8118

**Can't see home.kyk**

* Verify proxy settings in browser
* Try refreshing after 30 seconds (first connection takes time)

## Video Tutorial

Coming soon!


---

# 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://docs.kayaknet.io/getting-started/quick-start.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.
