Skip to content
Blode.md

AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.

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:

<Installer path="blodemd" command="npm install blodemd" />
Install
npm install blodemd

Default command

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

<Installer path="blodemd" />
Install
npx @vercel/platform-elements@latest blodemd

Props

FieldTypeDescriptionRequired
pathstringPackage path used to generate the default command.Yes
commandstringCustom install command. Overrides the default generated from `path`.Optional