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

@watthem/similar-files

v0.1.0

Published

TF-IDF similarity search for codebase files. Index a workspace and find related files using cosine similarity.

Readme

@watthem/similar-files

TF-IDF similarity search for codebase files. Index a workspace and find related files using cosine similarity.

Powered by @watthem/quarrel.

Installation

npm install -g @watthem/similar-files

Quick Start

# Index current directory
similar-index

# Find files similar to a specific file
similar-find README.md

# Find files similar to text
similar-find --text "authentication middleware"

Commands

similar-index

Build a TF-IDF index for workspace files.

similar-index [options]

Options:
  --root, -r <path>    Workspace root directory (default: current directory)
  --index, -i <path>   Custom index directory (default: <root>/.similar-files)
  --help, -h           Show help

Examples:

similar-index                               # Index current directory
similar-index --root /path/to/project       # Index specific directory
similar-index -r . -i ~/.my-indexes/proj    # Custom index location

similar-find

Find related files using the pre-built index.

similar-find <file-path>        Find files similar to a file
similar-find --text "query"     Find files similar to text

Options:
  --text, -t <text>     Search using text instead of a file
  --top, -n <count>     Number of results (default: 10)
  --threshold <value>   Minimum similarity score (default: 0.1)
  --index, -i <path>    Custom index directory
  --json                Output as JSON
  --help, -h            Show help

Examples:

similar-find README.md
similar-find --text "data validation schema"
similar-find --top 5 --threshold 0.2 docs/architecture.md
similar-find -i ~/.my-indexes/proj src/main.ts

File Types Indexed

  • .md - Markdown documentation
  • .ts, .tsx - TypeScript
  • .js, .jsx - JavaScript
  • .py - Python
  • .rs - Rust
  • .go - Go

Excluded Directories

node_modules, venv, .venv, target, .git, dist, build, __pycache__, .pnpm-store, .netlify, archives, .next, .cache, coverage

Example Output

Similar files to: src/auth/middleware.ts
Workspace: /home/user/myproject

1. src/auth/session.ts (0.72)
   "Session management utilities"
2. docs/authentication.md (0.68)
   "Authentication Guide"
3. tests/auth.test.ts (0.54)
4. src/middleware/index.ts (0.41)

How It Works

  1. Indexing: Scans workspace for supported file types, builds TF-IDF vectors using feature hashing
  2. Search: Vectorizes query (file or text), calculates cosine similarity against indexed documents
  3. Results: Returns files sorted by similarity score above threshold

The index is stored in .similar-files/index.json within the workspace root.

Use Cases

  • Explore unfamiliar code: Find related implementations across a codebase
  • Find duplicate docs: Locate overlapping documentation
  • Narrow search scope: Query similar files before grepping
  • Understand context: Discover files that discuss similar concepts

License

MIT