> ## Documentation Index
> Fetch the complete documentation index at: https://docs.muserank.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Get started with your project in minutes

## Prerequisites

Before you begin, make sure you have:

* Node.js 18 or higher installed
* A package manager (npm, yarn, or pnpm)
* Basic knowledge of JavaScript/TypeScript

## Installation

Install the package using your preferred package manager:

<CodeGroup>
  ```bash npm theme={null}
  npm install your-package
  ```

  ```bash yarn theme={null}
  yarn add your-package
  ```

  ```bash pnpm theme={null}
  pnpm add your-package
  ```
</CodeGroup>

## Basic usage

Here's a simple example to get you started:

```javascript theme={null}
import { YourPackage } from 'your-package';

// Initialize
const client = new YourPackage({
  apiKey: 'your-api-key'
});

// Make your first request
const result = await client.doSomething();
console.log(result);
```

## Configuration

Configure your setup with these options:

| Option    | Type    | Description                     |
| --------- | ------- | ------------------------------- |
| `apiKey`  | string  | Your API key for authentication |
| `timeout` | number  | Request timeout in milliseconds |
| `debug`   | boolean | Enable debug logging            |

## Next steps

<CardGroup cols={2}>
  <Card title="API reference" icon="book" href="/api-reference">
    Explore all available methods and options
  </Card>

  <Card title="Examples" icon="code" href="/examples">
    See more detailed examples and use cases
  </Card>
</CardGroup>
