This Node.js package is a React component for the GitHub repository card
With Node.js installed, simply run the following command to add the package to your React project.
npm install react-repo-card
Check out the examples below or check out the storybook.
The package comes with a main RepoCard component and a few hooks that make it work. Here's an example of how it works:
import React from "react";
import RepoCard from "react-repo-card";
const App = () => {
return (
<div style={{ width: "405px" }}>
<RepoCard username="tarptaeya" repository="repo-card" />
</div>
);
};
This software is released under the terms of the MIT license.
- This package is based on Tarptaeya's repo-card