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

@internet4000/find

v1.5.2

Published

URL action engine

Readme

Find

A privacy-friendly URL router for your browser's address bar. Type shortcuts like !m tokyo to search Google Maps, !w coffee for Wikipedia, or &gh user/repo to jump to GitHub.

Try it: internet4000.github.io/find

What is Find?

Find lets you customize your browser's address bar with custom search shortcuts. Instead of typing full URLs or using a single search engine, use simple symbols to route searches anywhere.

Examples:

  • !m berlin → Google Maps search for "berlin"
  • !w javascript → Wikipedia search for "javascript"
  • &gh internet4000/find → This GitHub repository
  • +note hello world → Create a quick note
  • hello world → DuckDuckGo search (default)

Quick Start

1. Use the hosted version

Visit internet4000.github.io/find and try a query.

2. Add it as your browser's search engine

Firefox:

  1. Visit the Find homepage
  2. Click the address bar menu (⋮)
  3. Select "Add Search Engine"

Chrome/Edge:

  1. Visit the Find homepage
  2. Right-click the address bar
  3. "Manage search engines" → Add Find manually:
    • Name: Find
    • Keyword: f
    • URL: https://internet4000.github.io/find/#q=%s

Safari: Safari requires extensions for custom search engines. You can use Find by visiting the website directly.

3. Start using shortcuts

Type in your browser's address bar:

  • !g privacy tools - Google search
  • !gh username - GitHub user search
  • !npm package-name - NPM package
  • +sheet Budget 2024 - New Google Sheet

Symbols

Find uses symbols to categorize actions:

  • ! search - Find things: !m, !w, !g, !npm, !gh
  • + action - Do things: +note, +sheet, +doc, +draw
  • & build - Build URLs: &gh user/repo, &mx @user:matrix.org
  • # command - Manage Find: #add, #del, #export

See all available shortcuts

Add Custom Shortcuts

#add ! ex https://example.org/search?q={}

Now you can use !ex my search to search example.org.

Delete with:

#del ! ex

Deploy Your Own

GitHub Pages (Easiest)

  1. Fork this repository
  2. Enable "Pages" in Settings → Pages → Source: "GitHub Actions"
  3. Push to main branch
  4. Your Find instance deploys automatically to https://username.github.io/find

No configuration needed - the deployment URL is detected automatically.

Netlify / Vercel

Deploy to Netlify Deploy with Vercel

Custom Domain

Set the I4K_FIND_URL repository variable in GitHub to your custom domain:

Settings → Secrets and variables → Actions → Variables → New variable
Name: I4K_FIND_URL
Value: https://your-domain.com

Local Development

git clone https://github.com/internet4000/find.git
cd find
npm install
npm run dev

Visit http://localhost:8000

Features

  • Privacy-first: All routing happens client-side, queries never touch our servers
  • No build step: Plain HTML/CSS/JavaScript with Web Components
  • Customizable: Add your own shortcuts with #add
  • Sync-able: Export/import your shortcuts via JSON
  • Protocol proxies: Access gemini://, gopher://, ipfs:// through web proxies
  • 40+ built-in shortcuts: Maps, GitHub, Wikipedia, NPM, and more

How It Works

  1. You type a query in your browser's address bar
  2. Find receives the query as a URL hash parameter (#q=your+query)
  3. It parses the query for symbols (!, +, &, #)
  4. Builds the correct destination URL
  5. Redirects your browser there

All processing happens in your browser. Your searches are private.

Privacy

  • No tracking: No analytics, no data collection
  • Hash parameters: Queries use #q= (fragment) not ?q=, so they never reach servers
  • Client-side only: All URL routing happens in JavaScript in your browser
  • Open source: GPL-3.0 licensed, audit the code yourself

Documentation

Support

License

GPL-3.0-or-later