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

# Quickstart

> Get up and running with emma in minutes

# Quickstart

Follow these steps to get started with emma.

## Prerequisites

Before you begin, make sure you have:

* Node.js 18 or higher
* npm or yarn

## Installation

<Steps>
  <Step title="Install the package">
    ```bash theme={null}
    npm install emma
    ```
  </Step>

  <Step title="Initialize your project">
    ```bash theme={null}
    npx emma init
    ```
  </Step>

  <Step title="Start using emma">
    ```javascript theme={null}
    import { emma } from 'emma';

    const result = emma.run();
    console.log(result);
    ```
  </Step>
</Steps>

## Configuration

Create a configuration file in your project root:

```json theme={null}
{
  "name": "my-project",
  "version": "1.0.0"
}
```

## Next Steps

Now that you're set up, explore our [Guides](/guides/overview) for more detailed information.
