SnippetKit

Info Command

Preview snippet details before installing.

info

Use the info command to preview snippet metadata and code before installing.

snippetkit info <snippet_id>

Example

snippetkit info Z6sBKkjT

Output Example:

📌 Title: Spinner
📌 Description: A simple spinner for loading states
📌 Language: typescript
📂 Path: components/ui/spinner.tsx

Code Preview:

import React from "react";
import { Loader2 } from "lucide-react";
 
export function Spinner() {
  return <Loader2 className="animate-spin text-primary" />;
}

💡 To install, run:

 
snippetkit add Z6sBKkjT

Why Use info?

  • Verify that you’ve got the correct snippet.
  • Check the default path and code preview.
  • Understand the language, tags, or descriptions before installing.

On this page