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

straplight

v1.1.0

Published

Spotlight-like search for Strapi admin

Readme

Features

  • Cmd+K search overlay — opens a search dialog from anywhere in the admin panel
  • Full-text search — searches across all string fields (title, name, text, email, richtext, etc.) in your api:: content types
  • Keyboard navigation — use arrow keys to navigate results, Enter to open, Escape to close
  • Debounced search with stale-response protection — fast and flicker-free
  • Dark and light theme support — follows your Strapi admin theme
  • Configurable — fine-tune search behavior and choose which content types are searchable via the settings page

Installation

npm install straplight
# or
yarn add straplight

Add the plugin to your Strapi configuration:

// config/plugins.ts
export default () => ({
  straplight: {
    enabled: true,
  },
});

Rebuild your admin panel:

yarn build
yarn develop

Usage

  1. Press Cmd+K (macOS) or Ctrl+K (Windows/Linux) from anywhere in the admin panel
  2. Start typing to search across all your content types
  3. Use Arrow Up/Down to navigate results
  4. Press Enter to open the selected entry in the Content Manager
  5. Press Escape to close the overlay

Settings

Navigate to Settings > Straplight in the admin panel to configure the plugin.

General

| Setting | Description | Default | | --- | --- | --- | | Delay | Debounce delay in milliseconds before triggering a search | 200 | | Min characters | Minimum query length required to trigger a search | 1 |

Content Types

The content types table lets you control search behavior per content type:

  • Enabled — toggle whether a content type is included in search results
  • Additional display fields — choose up to 2 extra fields to show alongside the main field in search results (supports relations)

All api:: content types are searchable by default.

Compatibility

  • Strapi v5 (5.x)
  • Node.js >= 18

License

MIT