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

# Quickstart

> Get started with Lime Journey in minutes

## Try the Demo

Experience Lime Journey instantly with our demo account:

```bash theme={null}
Email: demo@limejourney.com
Password: demo@limejourney.com
```

## Installation

<CodeGroup>
  ```bash npm theme={null}
  npm install limejourney
  ```

  ```bash yarn theme={null}
  yarn add limejourney
  ```

  ```bash pnpm theme={null}
  pnpm add @limejourney/sdk
  ```
</CodeGroup>

## Initialize the SDK

```typescript theme={null}
import { LimeJourney } from '@limejourney/sdk';

const client = new LimeJourney({
  apiKey: 'your-api-key'
});
```

## Track Your First Event

```typescript theme={null}
await client.events.create({
  entityId: 'user-123',
  event: 'sign_in',
  properties: {
    device: 'mobile',
    location: 'US'
  }
});
```

<Card title="What's Next?" icon="stars">
  Learn more about [Events](/essentials/events) and [Entities](/essentials/entities)
</Card>
