Getting Started
Display a list of all contributors to your project.
Prerequisites
You will need to have a Starlight website set up. If you don’t have one yet, you can follow the “Getting Started” guide in the Starlight docs to create one.
Installation
-
starlight-contributor-list
is a Starlight plugin. Install it by running the following command in your terminal:Terminal window npm install starlight-contributor-listTerminal window pnpm add starlight-contributor-listTerminal window yarn add starlight-contributor-list -
In any
.mdx
or.astro
file, import theContributorList
component by adding the following import statement:import { ContributorList } from "starlight-contributor-list";---import { ContributorList } from "starlight-contributor-list"--- -
Now you can use the
ContributorList
component within this file:<ContributorList githubRepo="trueberryless-org/mutanuq" /><ContributorList githubRepo="trueberryless-org/mutanuq" /> -
Start the development server to preview the plugin in action.
Check out the parameters which you can pass to the ContributorList
component.