Skip to content

Getting Started

Display a list of all contributors to your project.

You will need to have an Astro website set up. If you don’t have one yet, you can follow the “Install and Setup” guide in the Astro docs to create one.

  1. astro-contributors is an Astro component. Install the package by running the following command in your terminal:

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

    import { ContributorList } from "astro-contributors";
  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.

Check out the parameters which you can pass to the ContributorList component.