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

@r44j/made-by

v0.1.0

Published

A branded signature component library with GSAP animations and analytics tracking

Readme

@r44j/made-by

A branded signature component library with GSAP animations and PostHog analytics tracking. Embed a "Made by" signature in your client projects to drive traffic back to your portfolio.

Installation

pnpm add @r44j/made-by

Peer Dependencies

# Required
pnpm add react react-dom

# Optional (for animations)
pnpm add gsap

# Optional (for analytics)
pnpm add posthog-js

Quick Start

import { SignatureProvider, Signature } from "@r44j/made-by";
import "@r44j/made-by/styles.css";

function App() {
  return (
    <SignatureProvider
      config={{
        developerName: "Raj",
        role: "Full Stack Developer",
        portfolioUrl: "https://r44j.dev",
        sourceId: "my-client-project",
        avatar: "/avatar.png",
        socials: {
          github: "r44j",
          twitter: "r44j_dev",
        },
      }}
    >
      <YourApp />
      <Signature mode="compact" position="bottom-right" />
    </SignatureProvider>
  );
}

Display Modes

Compact (Default)

A small pill badge, perfect for floating in corners.

<Signature mode="compact" position="bottom-right" size="md" />

Expanded

A card with avatar, name, role, and optional socials.

<Signature mode="expanded" showRole showSocials />

Rounded

A circular avatar with hover tooltip.

<Signature mode="rounded" size="lg" />

Section

A full-width footer section.

<Signature mode="section" showSocials showYear />

Minimal

Just a text link.

<Signature mode="minimal" customText="Built with love by Raj" />

Props

| Prop | Type | Default | Description | | ------------------ | -------------------------------------------------------------------------- | ----------- | ------------------------------- | | mode | "compact" \| "expanded" \| "rounded" \| "section" \| "minimal" | "compact" | Display mode | | position | "bottom-right" \| "bottom-left" \| "top-right" \| "top-left" \| "inline" | "inline" | Position for floating modes | | size | "sm" \| "md" \| "lg" | "md" | Component size | | showAvatar | boolean | true | Show avatar image | | showRole | boolean | true | Show role/title | | showSocials | boolean | false | Show social links | | animate | boolean | false | Enable GSAP animations | | animationVariant | "blur-in" \| "slide-up" \| "fade" \| "none" | "blur-in" | Animation style | | triggerOnView | boolean | true | Animate when scrolled into view | | className | string | - | Additional CSS classes |

Theming

CSS Variables

The component uses CSS variables for theming. Override them in your styles:

:root {
  --signature-bg: oklch(0.98 0 0);
  --signature-fg: oklch(0.2 0.02 260);
  --signature-accent: oklch(0.55 0.15 260);
  --signature-muted: oklch(0.6 0.02 260);
  --signature-border: oklch(0.9 0.01 260);
}

.dark {
  --signature-bg: oklch(0.15 0.02 260);
  --signature-fg: oklch(0.95 0 0);
  --signature-accent: oklch(0.7 0.12 260);
  --signature-muted: oklch(0.5 0.02 260);
  --signature-border: oklch(0.25 0.02 260);
}

Theme Provider

<SignatureProvider
  config={config}
  theme={{
    mode: "auto", // "light" | "dark" | "auto"
  }}
>

Analytics

PostHog Integration

Pass your PostHog instance to track impressions and clicks:

import posthog from "posthog-js";

<SignatureProvider
  config={config}
  posthog={posthog}
>

Events Tracked

  • made_by_impression - When the signature enters the viewport
  • made_by_click - When a user clicks through to your portfolio

Attribution

All clicks include UTM parameters:

https://r44j.dev?ref=my-client-project&utm_source=client_site&utm_medium=signature&utm_campaign=made_by

Advanced Usage

Individual Mode Components

For more control, import mode components directly:

import { CompactMode, ExpandedMode, useSignature } from "@r44j/made-by";

function CustomSignature() {
  const { config } = useSignature();

  return (
    <div className="my-custom-wrapper">
      <CompactMode size="lg" />
    </div>
  );
}

Animation Hook

Use the animation hook for custom components:

import { useSignatureAnimation } from "@r44j/made-by";

function MyComponent() {
  const { containerRef, isVisible } = useSignatureAnimation({
    variant: "blur-in",
    triggerOnView: true,
  });

  return <div ref={containerRef}>Animated content</div>;
}

License

MIT