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

search-solar

v0.1.2

Published

A dead simple CLI to search Solar icons. Built for agents.

Downloads

314

Readme

search-solar

A dead simple CLI to search Solar icons (react-perf). Built for agents.

Install

npm install -g search-solar

Recommended: install the skill as well.

npx skills add bittere/search-solar

Commands

query <text> — global search

Searches across name, category, and tags at once. Results ranked by relevance.

search-solar query chat
search-solar query "arrow left" --limit 5

search — filtered search

Filter by any combination of name, tag, and category (all filters are ANDed).

search-solar search -n chat
search-solar search -t chat
search-solar search -n chat -c messages
search-solar search --category messages --tag video

list — browse icons

search-solar list                  # all icons
search-solar list -c arrows        # scoped to a category
search-solar list -c arrows --limit 20

categories — list all categories

Useful before using search -c or list -c.

search-solar categories

tags — list all tags

search-solar tags                       # all tags
search-solar tags --category arrows     # tags within a category

Output format

Every matched icon shows:

name:     ChatRound
category: Messages
tags:     chat, message, bubble, communication
import:   import { ChatRound } from "@solar-icons/react-perf/<Broken|Outline|Linear|Bold|LineDuotone|BoldDuotone>"

Global options

| Flag | Description | Commands | |---|---|---| | --limit <n> | Max results to return | query, search, list |

Development

You will need to grab the Solar Icons list from their website (https://solar-icons.vercel.app/). Open DevTools, do some digging around, find the list of all icons and their tags, categories, etc. Save it to a file, run the parse script on that file to generate data/icons.json.

npm run build   # Build and copy data file
npm run parse   # Parse icons data