Add Command
Install snippets into your project using the add command.
add
Use the add
command to install a snippet into your project. When run, it fetches the snippet’s code from the SnippetKit registry and writes it to a file.
The above doesn't seem to work and is throwing an error; make it very neat and fully proper MDX.
Example
Output Example:
This command downloads the snippet’s code and places it in the default path or a path specified by flags.
Flags
Flag | Description | Example |
---|---|---|
--path | Specify a custom install path. | snippetkit add Z6sBKkjT --path src/components/ |
--force | Overwrite the file if it already exists. | snippetkit add Z6sBKkjT --force |
--silent | Suppress any output (useful for scripting or CI/CD pipelines). | snippetkit add Z6sBKkjT --silent |
Usage Details
- Snippet ID: You can obtain this from the search command or from snippet references in your documentation.
- Confirmation Prompt: By default, SnippetKit prompts you if it detects an existing path or if you want to modify the path.
- Silent Install: Use
--silent
for fully automated installs in build scripts.
Example Use Cases
- Installing into a custom folder:
- Overwriting existing code:
- No terminal interaction: