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

react-dev-footer

v0.1.0

Published

A customizable 'Made by' developer attribution footer for React apps — name, email, contact, GitHub, LinkedIn, Facebook, Instagram links with full color theming.

Readme

react-dev-footer

A drop-in "made by" attribution footer for React apps. Show who built the site — name, email, contact, GitHub, LinkedIn, Facebook, Instagram, Twitter/X, website — with a color theme you control per project.

npm install react-dev-footer

Usage

import { DevFooter } from "react-dev-footer";

function App() {
  return (
    <>
      {/* ...your page content... */}

      <DevFooter
        name="Syed Muhammad Ali"
        email="[email protected]"
        github="syedmuhammadali-dev"
        linkedin="syed-muhammed-ali"
        website="https://ali-portfolio-nine.vercel.app/"
      />
    </>
  );
}

Renders, at the bottom of the page:

© 2026 Made with ❤ by Syed Muhammad Ali ✉️ 🌐 🐙 in

Props

| Prop | Type | Default | Description | | ------------ | --------------------- | ---------------------- | -------------------------------------------------- | | name | string | — | Developer/team name (required) | | prefix | string | "Made with ❤ by" | Text shown before the name | | customText | React.ReactNode | — | Extra text/node rendered after the name | | showYear | boolean | true | Show © <year> before the credit line | | year | number | current year | Override the displayed year | | email | string | — | Raw email or full mailto: link | | contact | string | — | Phone number, or full tel:/https: link | | website | string | — | Portfolio/site link | | github | string | — | Username or full URL | | linkedin | string | — | Username or full URL | | facebook | string | — | Username or full URL | | instagram | string | — | Username or full URL | | twitter | string | — | Username or full URL (renders as X icon) | | theme | DevFooterTheme | dark theme (see below) | Full color control, see Theming | | position | "static" \| "fixed" | "static" | "fixed" pins the footer to the viewport bottom | | iconSize | number | 18 | Icon size in px | | rounded | boolean | false | Rounded corners (useful with "static" + margins) | | className | string | — | Extra class name on the <footer> element | | style | React.CSSProperties | — | Inline style overrides, merged last |

Any link left undefined is simply not rendered — pass only the socials that are relevant.

Theming

Every website can have its own footer colors:

<DevFooter
  name="Syed Muhammad Ali"
  github="syedmuhammadali-dev"
  theme={{
    background: "#ffffff",
    text: "#1f2937",
    icon: "#6b7280",
    iconHover: "#2563eb",
    border: "#e5e7eb",
    accent: "#2563eb",
  }}
/>

| Theme key | Controls | | ------------ | --------------------------------------- | | background | Footer background color | | text | Base text color | | icon | Icon color at rest | | iconHover | Icon color on hover | | border | Top border/divider color | | accent | Color of the highlighted developer name |

Default theme is a dark slate palette; pass a full or partial theme object to override — unset keys fall back to the defaults.

Fixed footer example

<DevFooter
  name="Syed Muhammad Ali"
  position="fixed"
  github="syedmuhammadali-dev"
  theme={{ background: "#111827" }}
/>

When using position="fixed", add bottom padding to your page content so the footer doesn't overlap it.

Author

Syed Muhammad Ali

License

MIT