Skip to content

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

  1. starlight-contributor-list is a Starlight plugin. Install it by running the following command in your terminal:

    Terminal window
    npm install starlight-contributor-list
  2. In any .mdx or .astro file, import the ContributorList component by adding the following import statement:

    import { ContributorList } from "starlight-contributor-list";
  3. Now you can use the ContributorList component within this file:

    <ContributorList githubRepo="trueberryless-org/mutanuq" />
  4. Start the development server to preview the plugin in action.