npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

support-us-button

v2.2.0

Published

A customizable and flexible Support Us button component for integrating sponsorship and donation options into web applications.

Downloads

854

Readme

 

Static Badge


A lightweight React component library for displaying Support us page in a clean and customizable way. It provides pre-built UI components to showcase support us page with tier-based layouts, theme support, and Tailwind CSS styling, making it easy to integrate a professional support us page into any project or website.


🚀 Features

  • 🎨 Tier-based Layouts: Display sponsors in different tiers with logos and links, styled according to the selected theme.

  • 🎨 Theme Support: Choose from light, dark, minimal, corporate, or AOSSIE themes for consistent branding.

  • 🎨 Customizable Styling: Tailwind CSS classes for easy customization of the support us page.

  • 🖥️ Responsive Design: Built with responsive design principles for optimal viewing on all devices.

  • 🧩 Easy Integration: Simple to integrate into any project or website with a single component.

  • 📦 ESM + CommonJS + UMD builds: Supports various module systems for flexible integration.

  • 🧠 TypeScript support included: Provides type definitions for seamless development.

  • 🎨 Styled with Tailwind (no global resets): Uses Tailwind CSS for styling with no global resets.

  • 🪶 Lightweight and optimized: Lightweight and optimized for performance.


💻 Tech Stack

React – For building reusable UI components

TypeScript – For type safety and better developer experience

Tailwind CSS – For modern, utility-first styling

Rollup – For bundling and optimizing the package for distribution

Node.js & npm – For package management and publishing


🔗 Repository Links


Installation

You can install and use this package either through npm (recommended for Node.js projects) or directly via a CDN.

Using npm

Install the package using npm:

# Install the package
npm install support-us-button

Using CDN

You can also use the component directly in the browser via a CDN:

<script src="https://cdn.jsdelivr.net/npm/support-us-button@latest/dist/index.umd.js"></script>

Once included, the component will be available to use in your project.


Usage

Using npm

// Import the component in your project:
import SupportUsButton from "support-us-button";

// Import the styles in your project:
import "support-us-button/style.css";

// Import the types in your project:
import type { supportUsButtonProps } from "support-us-button";

// Use the component in your project:
<SupportUsButton {...props} />; // props is an object of type supportUsButtonProps

[!NOTE] Tailwind CSS Setup Requirements

  • Tailwind CSS v4 or later: Import the stylesheet directly:

    import "support-us-button/style.css";
  • Tailwind CSS v3 or earlier: Do not import the stylesheet directly. Instead, add the package directory to the content array in your tailwind.config.js so Tailwind can detect and compile the required classes.

    module.exports = {
      content: [
        "./src/**/*.{js,ts,jsx,tsx}", // Your project files
        "./node_modules/support-us-button/dist/**/*.{js,ts,jsx,tsx}", // Support Us Button package
      ],
      theme: {
        extend: {},
      },
      plugins: [],
    };

Using CDN

<script src="https://cdn.jsdelivr.net/npm/support-us-button@latest/dist/index.umd.js"></script>

// Import the styles in your project:
<link
    rel="stylesheet"
    href="https://cdn.jsdelivr.net/npm/support-us-button@latest/dist/style.css"
/>

// Use the component in your project:
<SupportUsButton />

Once included, the component will be available to use in your project.


Quick Start

Props template — fill in your own values:

const props: supportUsButtonProps = {
  // Theme for the button, can be one of "light", "dark".
  Theme: Theme,

  // Information about the organization, including name, description, logo, and project information
  organizationInformation: organizationInformation,

  // Information about the project, including name, description, and image
  projectInformation: projectInformation,

  // List of current sponsors, each with name, optional logo, link, and sponsorship tier
  sponsors: sponsors,

  // Information about the call-to-action section, including title, description, and sponsor links
  ctaSection: CTASection
};

<SupportUsButton {...props} />;

Available API

| Prop | Type | Required | Description | | ------------------------- | ---------------- | -------- | -------------------------------------------------------------------------------------------------------------- | | Theme | string | No | "light" or "dark" | | organizationInformation | object | Yes | Information about the organization, including name, description, logo, and project information | | sponsors | array of objects | No | List of current sponsors, each with name, optional logo, link, and sponsorship tier | | ctaSection | array of object | Yes | Information about the call-to-action section, including title, description, and sponsor links | | projectInformation | object | No | Information about project, which user will see on sponsor page| | Logo | Boolean | No | AOSSIE, bg-logo. | | className | string | No | Class to apply on the root element. | | border |object | No | These defines the length in X and Y axis of border around page. Only pass it when border is not covering full page (e.g. TopX1: "-10" TopX2: "110"). |


Prop Options Reference

Theme

Controls the overall visual appearance of the widget.

| Value | Description | | ----------- | ---------------------------------------- | | dark | Dark mode UI | | light | Light mode UI |

organizationInformation

Information about the organization and project.

| Value | Type | Required | Description | | -------------------- | -------------------- | -------- | ------------------------ | | name | string | Yes | Organization name | | desc | string | Yes | Organization description | | image | string | No | Organization logo | | link | string | No | Organization link |

projectInformation

Details about the project being sponsored.

| Value | Type | Required | Description | | ------------- | ------ | -------- | ------------------- | | name | string | Yes | Project name | | description | string | Yes | Project description | | image | string | Yes | Project description |

sponsors

List of sponsors displayed in the widget.

| Value | Type | Required | Description | | ----------------- | ------ | -------- | --------------- | | name | string | Yes | Sponsor name | | sponsorshipTier | Tier | No | Sponsor tier |

Tier

Used inside the sponsors array to visually differentiate sponsors.

| Value | Description | | ---------- | -------------------- | | Platinum | Highest tier sponsor | | Gold | High level sponsor | | Silver | Mid level sponsor | | Bronze | Entry level sponsor |

ctaSection

Call-to-action section encouraging sponsorship.

| Value | Type | Required | Description | | ------------- | --------------- | -------- | ----------------------------- | | name | string | Yes | CTA title | | url | string | Yes | CTA url to redirect the user to that page. |

border

Call-to-action section encouraging sponsorship.

| Value | Type | Required | Description | | ------------- | --------------- | -------- | ----------------------------- | | TopX1 | string | Yes | Border top line | | TopX2 | string | Yes | Border top line | | BottomX1 | string | Yes | Border bottom line | | BottomX1 | string | Yes | Border bottom line | | LeftY1 | string | Yes | Border left line | | LeftY2 | string | Yes | Border left line | | RightY1 | string | Yes | Border right line | | RightY2 | string | Yes | Border right line |


📱 App Screenshots

Light-Theme

Light-Theme mobile screen preview.

Dark-Theme

Dark-Theme mobile screen preview.


🙌 Contributing

⭐ Don't forget to star this repository if you find it useful! ⭐

Thank you for considering contributing to this project! Contributions are highly appreciated and welcomed. To ensure smooth collaboration, please refer to our Contribution Guidelines.


✨ Maintainers


📍 License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.


💪 Thanks To All Contributors

Thanks a lot for spending your time helping SupportUsButton grow. Keep rocking 🥂

Contributors

© 2026 AOSSIE