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

linkitylink

v0.0.2

Published

Linkitylink - Privacy-first link page service

Downloads

275

Readme

Linkitylink

A privacy-first link page service. Create beautiful, shareable link pages without tracking or surveillance.

Overview

Linkitylink creates beautiful SVG-based link pages from your links. Share your page via human-memorable emojicodes or browser-friendly alphanumeric URLs.

Features

  • Privacy-First - No tracking, no analytics, no surveillance
  • Beautiful SVG Templates - Three adaptive layouts based on link count
  • Easy Sharing - Share via emojicode or alphanumeric URL
  • No Account Required - Create pages instantly via API
  • Optional Payment Integration - Stripe support for premium features

Quick Start

npm install
npm start

Server runs on http://localhost:3010

Usage

Create a Link Page

curl -X POST http://localhost:3010/create \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My Links",
    "links": [
      {"title": "GitHub", "url": "https://github.com/user"},
      {"title": "Twitter", "url": "https://twitter.com/user"}
    ]
  }'

Response:

{
  "success": true,
  "emojicode": "🔗💎🌟🎨🐉📌🌍🔑",
  "pubKey": "02a1b2c3...",
  "uuid": "abc123..."
}

View a Link Page

Via emojicode (persistent):

http://localhost:3010?emojicode=🔗💎🌟🎨🐉📌🌍🔑

Via alphanumeric URL (browser-friendly):

http://localhost:3010/t/02a1b2c3d4e5f6a7

SVG Templates

Link pages automatically adapt based on link count:

  • Compact Layout (1-6 links) - Large 600x90px cards, vertical stack
  • Grid Layout (7-13 links) - 2-column grid, 290x80px cards
  • Dense Layout (14-20 links) - 3-column grid, 190x65px cards

All templates feature:

  • Six gradient color schemes
  • Dark mode with glowing effects
  • Animated particles
  • Mobile-responsive design

Environment Variables

PORT=3010                                    # Server port
BDO_BASE_URL=http://localhost:3003           # BDO storage service
FOUNT_BASE_URL=http://localhost:3001         # User data service (optional)
ADDIE_BASE_URL=http://localhost:3009         # Payment service (optional)
NODE_ENV=development                          # Environment mode
ENABLE_APP_PURCHASE=false                     # Show "Buy in App" button (default: false)

API Endpoints

| Method | Endpoint | Description | |--------|----------|-------------| | GET | / | Landing page or view page by emojicode | | GET | /create | Web interface for creating pages | | POST | /create | API for creating link pages | | GET | /t/:id | View page by alphanumeric identifier | | GET | /my-tapestries | List user's created pages |

Docker

# Build and run
docker-compose -f docker-compose.standalone.yml up -d --build

# Verify running
curl http://localhost:3010

Wiki Integration

Linkitylink is designed to work as an optional add-on to federated wiki deployments, providing link aggregation pages without requiring the full Planet Nine ecosystem.

History

Originally developed as "Glyphenge" within The Advancement project. Extracted as a standalone service in November 2025 for easier deployment and wiki integration. Built with Love by Claude.

License

MIT