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

@innovatespace/nova-icon

v0.0.10

Published

**Nova Icon** is a powerful, cross-platform CLI tool built with [NestJS](https://nestjs.com/) that helps developers generate high-quality mobile app icons from either **local images** or **AI-generated prompts** using [OpenAI’s DALL·E 3](https://platform.

Readme

🧩 Nova Icon CLI

Nova Icon is a powerful, cross-platform CLI tool built with NestJS that helps developers generate high-quality mobile app icons from either local images or AI-generated prompts using OpenAI’s DALL·E 3.


✨ Features

  • Icon from Images – Use local image files (PNG, JPG, JPEG, WebP, TIFF, GIF)
  • AI-Powered Icons – Generate icons from text prompts via OpenAI
  • App-Ready Output – Creates all standard mobile app icon sizes
  • Secure API Key Management – Set, get, or remove OpenAI keys locally
  • Image Processing – High-quality output using Sharp
  • Cross-Platform – Works on Windows, macOS, and Linux

📦 Installation

Install globally:

npm install -g @innovatespace/nova-icon

Or run with npx (no installation required):

npx -y @innovatespace/nova-icon --help

# other package manager
pnpx  @innovatespace/nova-icon --help
yarn  @innovatespace/nova-icon --help
bunx  @innovatespace/nova-icon --help

🚀 Usage

🖼️ Generate Icons from a Local Image

nova-icon generate --filepath="./path/to/image.png" --output="./icons"

# Shorthand
nova-icon gen -f="./path/to/image.png" -o="./icons"

🤖 Generate Icons from an AI Prompt

nova-icon generate --prompt="minimalist weather app icon" --output="./icons"

# Shorthand
nova-icon gen -p="minimalist weather app icon" -o="./icons"

🔐 OpenAI API Key Management

Set API Key

nova-icon config --set "sk-your-api-key"

# Shorthands
nova-icon cfg -s "sk-your-api-key"
nova-icon c -s "sk-your-api-key"

Get API Key

nova-icon config --get

# Shorthands
nova-icon cfg -g
nova-icon c -g

Remove API Key

nova-icon config --remove

# Shorthands
nova-icon cfg -r
nova-icon c -r

📐 Generated Icon Sizes

Nova Icon CLI generates all essential mobile app icon sizes:

| Platform | Dimensions (px) | | --------------- | --------------- | | App Store | 1024 × 1024 | | Android / Web | 512 × 512 | | Android | 192 × 192 | | iOS | 180 × 180 | | General Purpose | 144 × 144 | | | 128 × 128 | | | 96 × 96 | | | 72 × 72 | | | 48 × 48 |


⚙️ CLI Options

| Option | Description | | ---------------- | ------------------------------------- | | --filepath, -f | Path to local image file | | --prompt, -p | Prompt text for AI-generated icon | | --output, -o | Output directory (default: ./icons) | | --set, -s | Set your OpenAI API key | | --get, -g | Retrieve your stored API key | | --remove, -r | Remove stored OpenAI API key |


💡 Examples

# Generate from image
nova-icon gen -f="./assets/logo.png" -o="./icons"

# Generate from prompt
nova-icon gen -p="retro game controller icon"

# Manage API key
nova-icon c -s "sk-your-key"
nova-icon c -g
nova-icon c -r

# View help
nova-icon --help

🧱 Requirements

  • Node.js v16 or later
  • OpenAI API Key (only for AI prompt generation)

🛠 Development

# Install dependencies
bun install

# Build the project
bun build

# Run in dev mode
bun start:dev

📝 TODO

  • [ ] Add Unit Tests
  • [ ] Fix Commander default help output for package
  • [ ] Fix issue with using the package without installation i.e npx nova-icon --help

🤝 Contributing

Contributions are welcome! Feel free to:

  • Open issues
  • Submit pull requests
  • Improve documentation

📄 License

MIT © InnovateSpace