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

universal-lookup

v1.7.12

Published

Universal lookup service aggregating multiple APIs for phone, IP, email, location, and parcel lookups with smart caching and response merging

Downloads

1,626

Readme

🔍 Universal Lookup

npm version License: MIT Docker Image Version Platforms

Universal Lookup is a high-performance intelligence service that aggregates multiple APIs for phone numbers, IP addresses, emails, locations, and parcels. It features smart response merging, multi-layered caching, and a premium web interface.


🌟 Features

  • 🚀 Instant Execution: Run via npx without any setup.
  • 🔄 Multi-Provider Aggregation: Merges results from dozens of sources (Tellows, MaxMind, Google, etc.).
  • 📦 Multi-Arch Docker: Native support for ARM64 (Apple Silicon), ARMv7 (RPi), AMD64, and x86.
  • ⚡ Smart Caching: Persistent SQLite storage with configurable TTL per data type.
  • 🎨 Premium UI: Modern dark-mode web interface for real-time lookups.
  • 📖 OpenAPI 3.0: Fully documented REST API with Swagger UI.
  • 🏠 Unraid Ready: Optimized for Unraid with Community Applications templates.

🚀 Quick Start

1. Using npx (Recommended)

Run the server instantly from any terminal:

npx universal-lookup

Note: Ensure you have Node.js 20+ installed.

2. Using Docker

Pull the multi-arch image from GitHub or Docker Hub:

# Using Docker Hub
docker run -d -p 24010:24010 --name lookup bluscream1/universal-lookup:latest

# Using GHCR
docker run -d -p 24010:24010 --name lookup ghcr.io/bluscream/universal-lookup:latest

3. Manual Installation

git clone https://github.com/Bluscream/universal-lookup.git
cd universal-lookup
npm install
npm run build
npm start

📡 API Endpoints

All endpoints are available at http://localhost:24010/api/*.

| Endpoint | Description | Example Query | |----------|-------------|---------------| | GET /api/tel/:query | Reverse phone lookup | +493012345678 | | GET /api/ip/:query | IP/Domain intelligence | 8.8.8.8 | | GET /api/email/:query | Email validation & risk | [email protected] | | GET /api/location/:query | Geocoding & Reverse Geocoding | Berlin, Germany | | GET /api/parcel/:query | Package tracking | 00340434515310596216 |

📖 Full Documentation: Explore the interactive Swagger UI at http://localhost:24010/docs.


⚙️ Configuration

Copy .env.example to .env to customize the service.

Server & Security

| Variable | Default | Description | |----------|---------|-------------| | PORT | 24010 | Server port | | HOST | 0.0.0.0 | Binding address | | LOG_LEVEL | info | Logging verbosity (debug, info, warn, error) | | REQUIRE_TOKEN | null | If set, requires ?token= for all API calls | | RATE_LIMIT_MAX | 100 | Max requests per time window | | RATE_LIMIT_WINDOW| 1 minute | Rate limit time window |

Cache & Performance

| Variable | Default | Description | |----------|---------|-------------| | DB_PATH | ./data/cache.db | Path to SQLite database | | CACHE_TTL | 86400 | Default cache duration (seconds) | | CACHE_TTL_PARCEL| 3600 | Cache duration for parcels (seconds) | | PROVIDER_TIMEOUT | 10000 | Max wait time for API providers (ms) | | PUPPETEER_TIMEOUT| 15000 | Max wait time for headless browser (ms) |

API Keys (Optional)

| Variable | Description | |----------|-------------| | IP_API_COM_KEY | Commercial key for ip-api.com | | IP_API_IO_KEY | API key for ip-api.io features | | TELLOWS_API_KEY | Partner key for Tellows | | MAXMIND_LICENSE_KEY | License for GeoLite2 downloads | | GOOGLE_API_KEY | Key for Google Maps & Search API | | GOOGLE_SEARCH_CX| Google Custom Search Engine ID | | PARCELSAPP_API_KEY | Key for ParcelsApp tracking | | DHL_API_KEY | Key for official DHL API |

Integration Settings

| Variable | Default | Description | |----------|---------|-------------| | FRITZBOX_HOST | fritz.box | FritzBox address for phone lookups | | PHONE_COUNTRY_PREFIX| 0049 | Default country code | | PHONE_LOCAL_PREFIX| null | Default local area code | | UNIVERSAL_RESULTS_LIMIT| 3 | Max results shown per provider | | PUPPETEER_SKIP_DOWNLOAD| false | Skip downloading Chromium |


🛠️ Development & Deployment

The project includes a robust automation script for contributors:

# Run QA, bump version, push to Git, build Docker (all archs), and publish to npm
.\scripts\update.ps1 -Bump patch

📜 License

Distributed under the MIT License. See LICENSE for more information.

Credits & Contributions


[!NOTE] AI Disclaimer: Parts of this codebase, including core logic, documentation, and deployment scripts, were generated or optimized using Advanced Agentic AI. While thoroughly tested, users are encouraged to review critical components for their specific use cases.