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

@satyadeep-gohil/seekr

v1.0.1

Published

A fast, dependency-free JavaScript search utility for arrays, objects, strings, and more.

Downloads

20

Readme

🔍 Seekr: vanilla-search-lib

A blazing-fast, dependency-free JavaScript search utility for arrays, strings, objects, maps, and sets. Built for performance, flexibility, and extensibility — with support for deep property traversal, multiple search modes, and type detection.


⚡ Why vanilla-search-lib?

  • ✅ Written in pure JavaScript — no dependencies
  • 🚀 Performance-optimized — tested with over 1000 scenarios
  • 🧠 Intelligently handles arrays, strings, sets, maps, and objects
  • 🔍 Supports exact, substring, regex, and range search
  • 🌐 Designed to be extensible and developer-friendly
  • 🧩 Smart data type detection and deep property access

📦 Installation

npm i @satyadeep-gohil/seekr

🔧 Basic Usage

import Seekr from 'vanilla-search-lib';

// Example with array of objects
const data = [
  { id: 1, name: 'Alice' },
  { id: 2, name: 'Bob' },
];

const engine = new Seekr(data);
const results = engine.search('Alice', 'name', { mode: 'exact' });
console.log(results);

🧩 Supported Data Types

| Type | Supported | | --------- | ---------- | | Array | ✅ Yes | | Object | ✅ Yes | | String | ✅ Yes | | Map | 🚧 Planned | | Set | 🚧 Planned | | Primitive | ⚠️ No |


🔍 Search Modes

| Mode | Description | | ----------- | ------------------------------------------- | | exact | Matches exactly (case-sensitive optional) | | subString | Substring match for strings only | | regex | Regular expression match for strings | | range | Range match for numbers (e.g., [10, 100]) |


⚙️ Options

{
  mode: 'exact' | 'subString' | 'regex' | 'range', // default: 'exact'
  caseSensitive: boolean,                         // default: false
  deep: boolean                                   // default: false
}

Supports deep property search like user.address.city when deep: true.


🧪 Performance Benchmarks

| Test Description | Avg Time | Rating | | -------------------------------------- | -------- | ------------- | | Nested Object - Deep Property Search | 0.46 ms | 🚀 Excellent | | Medium String Array - Substring Search | 1.80 ms | 🚀 Excellent | | Mixed Array - Exact Search | 4.57 ms | 🚀 Excellent | | Unicode Strings - Exact Search | 5.51 ms | 🚀 Excellent | | Duplicate Values - All Match | 9.57 ms | 🚀 Excellent | | Large Object Array - Property Search | 28.43 ms | ✅ Good | | Large String Array - Case Sensitive | 31.72 ms | ✅ Good | | No Match in Large Array | 60.85 ms | ⚠️ Acceptable | | Large String Array - Case Insensitive | 65.48 ms | ⚠️ Acceptable |

  • 🎯 Overall Avg Time: 23.16 ms
  • 🧠 Avg Memory Use: ~0 MB
  • 🧪 Total Tests: 1000+

🧠 Ideal For

  • Lightweight in-browser search
  • Static site data filtering
  • Building mini search engines
  • Object and string search logic abstraction

📜 License

Custom License You may use and modify your own copy freely, but the original repository remains read-only. ✅ Attribution required. 📁 See LICENSE file for full terms.


🙌 Contributing

Feature suggestions, ideas, and optimizations are welcome. PRs will not be accepted in the original repo due to its protected license. Forks encouraged.


🤝 Attribution

Created by Satyadeep Gohil Inspired by the need for simple, fast, and flexible client-side search logic.