Getting Started
Display a list of all contributors to your project.
Prerequisites
Section titled “Prerequisites”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.
Installation
Section titled “Installation”-
astro-contributorsis an Astro component. Install the package by running the following command in your terminal:Terminal window npm install astro-contributorsTerminal window pnpm add astro-contributorsTerminal window yarn add astro-contributors -
In any
.mdxor.astrofile, import theContributorListcomponent by adding the following import statement:import { ContributorList } from "astro-contributors";---import { ContributorList } from "astro-contributors"--- -
Now you can use the
ContributorListcomponent 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.