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

openfooter

v0.1.11

Published

A framework-agnostic embeddable footer Web Component for unified links, socials, and project promotion.

Downloads

696

Readme

OpenFooter

OpenFooter is a drop-in website footer powered by a Google Sheet.

2-minute setup

  1. Copy templates/openfooter-template.csv into Google Sheets.
  2. Fill metadata rows and link rows.
  3. Click Share and set Anyone with the link.
  4. Copy the normal share URL.
  5. Paste it into <open-footer url="...">.

CDN Embed

<script src="https://cdn.jsdelivr.net/npm/openfooter@VERSION/dist/openfooter.iife.min.js"></script>

<open-footer
  url="https://docs.google.com/spreadsheets/d/YOUR_SHEET_ID/edit?usp=sharing"
  sheet-gid="0"
  theme="dark"
  layout="columns-brand">
</open-footer>

Google Sheet Schema

type,key,value,label,url,icon,category,priority,is_active,is_featured,description,start_date,end_date
meta,brandName,OpenFooter Demo,,,,,,,,,,
meta,brandTagline,"Unified footers from one Google Sheet",,,,,,,,,,
meta,brandMessage,"Manage links and brand profile from one sheet.",,,,,,,,,,
meta,brandImageUrl,https://placehold.co/96x96?text=OF,,,,,,,,,,
meta,brandImageAlt,OpenFooter logo,,,,,,,,,,
meta,brandImageShape,rounded,,,,,,,,,,
meta,copyrightName,OpenFooter Demo,,,,,,,,,,
meta,theme,dark,,,,,,,,,,
meta,layout,columns-brand,,,,,,,,,,
social,,,GitHub,https://github.com/prlaclede/OpenFooter,github,Developer,1,true,false,Open-source repository,,
  • type=meta rows configure the footer and do not render as links.
  • Link rows keep key and value empty.
  • Columns are generated from category.

Brand image fields

  • brandName
  • brandTagline
  • brandMessage
  • brandImageUrl
  • brandImageAlt
  • brandImageShape (rounded, circle, square)

HTML attributes:

  • brand-name
  • brand-tagline
  • brand-message
  • brand-image-url
  • brand-image-alt
  • brand-image-shape

Themes and layouts

Themes: dark, light, minimal, auto. Layouts: columns-brand, centered, compact, plus additional presets.

Running examples locally

npm install
npm run build
npm run serve:examples

Open: http://localhost:5173/examples/

Caching

Google Sheets caching is disabled by default (cacheTtlSeconds=0) and requests use cache-busting _of_cache_bust. Optional:

  • cache-ttl-seconds="300"
  • disable-cache="true"

Troubleshooting

  • Sheet must be publicly viewable.
  • Use sheet-gid to select a specific tab.
  • Google propagation can be delayed briefly.
  • Unsafe URLs are blocked (javascript:, data:text/html).

Publishing

npm run typecheck
npm run build
npm run pack:check
npm publish

Releasing / Publishing

OpenFooter uses GitHub Actions to publish tagged releases to npm.

npm version patch
git push origin main
git push origin --tags

See docs/PUBLISHING.md for the full process.

Themes and Colors

Built-in themes:

<open-footer theme="dark"></open-footer>

Custom colors:

<open-footer primary-color="#2563eb" accent-color="#7c3aed" accent-color-2="#06b6d4"></open-footer>

Background styles:

<open-footer background-style="gradient"></open-footer>
<open-footer background-style="mesh"></open-footer>

Using OpenFooter with Next.js / React

Install:

npm install openfooter
"use client";

import { OpenFooter } from "openfooter/react";

export default function OpenFooterWrapper() {
  return (
    <OpenFooter
      url="https://docs.google.com/spreadsheets/d/YOUR_SHEET_ID/edit?usp=sharing"
      sheetGid="0"
      theme="dark"
      layout="columns-brand"
      brandName="TurtlesStudios"
      brandTagline="Music, tech, gaming, and creative projects"
      primaryColor="#2563eb"
      accentColor="#7c3aed"
      accentColor2="#06b6d4"
      backgroundStyle="mesh"
    />
  );
}

This wrapper avoids the TypeScript JSX.IntrinsicElements custom-element error by rendering via a typed React component using React.createElement.