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

# Remix

> Learn how to use Doczilla with Remix.

export const LearnMoreLink = ({title, href}) => {
  return <a href={href}>
      <span className="my-2.5 not-prose flex items-center text-primary space-x-2 font-medium">
        <Icon icon="book-open" color="#0D9373" />
        <span>{title}</span>
      </span>
    </a>;
};

## Install

Download the Node.js SDK using your favorite package manager.

<CodeGroup>
  ```bash npm theme={null}
  npm install @doczilla/node
  ```

  ```bash yarn theme={null}
  yarn add @doczilla/node
  ```

  ```bash pnpm theme={null}
  pnpm add @doczilla/node
  ```
</CodeGroup>

<Snippet file="package-requires-api-key.mdx" />

## Usage

<CodeGroup>
  <Snippet file="code-group/libraries/remix.md" />
</CodeGroup>

## Learn more

<LearnMoreLink title="Examples" href="/examples/introduction" />

<LearnMoreLink title="Different API endpoint types" href="/api-reference/introduction" />
