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

@kennyfrc/streamline-cli

v1.1.0

Published

CLI tool for Streamline Icons API

Readme

Streamline CLI

Command-line interface for the Streamline Icons API. Search, download, and manage icons directly from your terminal.

What is this?

A TypeScript CLI tool that integrates with the Streamline Icons API, allowing you to search for icons across families, download SVG/PNG files, and get detailed icon information.

Quick Start

1. Install

npm install -g @kennyfrc/streamline-cli

2. Configure

streamline init

Edit ~/.config/streamline/config.toml and add your API key:

[auth]
apiKey = "your-api-key-here"

3. Search & Download

# Find icons
streamline search global "home" --free-only

# Download as SVG
streamline download svg ico_hash --name my-icon

# Download as PNG
streamline download png ico_hash --size 256

Common Usage

Search Icons

Global search (all families):

streamline search global "user profile"
streamline search global "home" --limit 10 --free-only

Family search (specific family):

streamline search family "material-pro-sharp-line" "button"
streamline search family "font-awesome-regular" --limit 5

Download Icons

SVG format:

streamline download svg ico_CVtS8rNWud0BTWe2
streamline download svg ico_hash --name custom-name --responsive

PNG format:

streamline download png ico_hash --size 128
streamline download png ico_hash --size 512 --name high-res

Get Icon Details

streamline get icon ico_CVtS8rNWud0BTWe2

Command Reference

search

Global search:

streamline search global <query> [options]

Options:
  --limit <n>       Results per page (default: 50, max: 100)
  --offset <n>      Pagination offset (default: 0)
  --free-only       Show only free icons
  --style <name>    Filter by family/style
  --category <name> Filter by category

Family search:

streamline search family <familySlug> [query] [options]

Options:
  --limit <n>       Results per page (default: 50, max: 100)
  --offset <n>      Pagination offset (default: 0)
  --free-only       Show only free icons
  --category <name> Filter by category

download

SVG download:

streamline download svg <hash> [options]

Options:
  --output <path>   Output directory (default: current)
  --name <name>     Custom filename (without .svg)
  --responsive      Make SVG responsive

PNG download:

streamline download png <hash> [options]

Options:
  --output <path>   Output directory (default: current)
  --name <name>     Custom filename (without .png)
  --size <n>        Size in pixels (default: 512)

get

Get icon details:

streamline get icon <hash>

Other Commands

streamline init              # Create config file
streamline --help            # Show help
streamline --version         # Show version

Configuration

Default location: ~/.config/streamline/config.toml

Priority order:

  1. --api-key option (highest priority)
  2. STREAMLINE_API_KEY environment variable
  3. Configuration file (default)

Get API key: https://www.streamlinehq.com/profile?tab=api_keys

Requirements

  • Node.js 16+
  • Streamline Icons API key

Publishing

Scoped packages publish as private by default on npm. When releasing a new version, run:

npm publish --access public

The package also declares publishConfig.access = "public" to guard against the E402 Payment Required error.