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

# Installer

Display a styled package installation command.

Use the `Installer` component to show a copyable installation command in a styled container.

## Basic usage

Pass a `command` prop with the full install command:

```mdx
<Installer path="blodemd" command="npm install blodemd" />
```

```bash
npm install blodemd
```

## Default command

If you omit the `command` prop, a default command is generated from the `path` value:

```mdx
<Installer path="blodemd" />
```

## Props

- `path` (type: string, required: true): Package path used to generate the default command.
- `command` (type: string, required: false): Custom install command. Overrides the default generated from `path`.