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

wiz

v0.0.1

Published

Makes command-line tools easier to use through implicit option files

Readme

Makes command-line tools easier to use through implicit option files.

Status

I'm just getting started but do not consider anything bolted down until version is at least 0.2.0.

Installation

    npm install -g wiz

Usage

Create a custom version of ack command named zack

    wiz curry ack    # creates ~/.wiz/bin/zack [1]
    wiz link zack    # creates /usr/local/bin/zack -> ~/.wiz/bin/zack [2]
  1. Because wiz curry command didn't provide a name for the custom command, default name with z prefix is used.

  2. wiz link step is unnecessary if you have ~/.wiz/bin in your PATH.

Create an option file for zack

Option file for zack must be named zack.opts and may be located in any directories between current working directory and HOME directory. Option file may also be stored in each directory's .wiz directory.

Directories searched when current working directory is /Users/don/github/wiz:

    /Users/don/github/wiz
    /Users/don/github/wiz/.wiz
    /Users/don/github
    /Users/don/github/.wiz
    /Users/don
    /Users/don/.wiz

Example zack.opts file

    -i
    --ignore-dir node_modules

    # this requires ack 2.0
    --nojs

Option lines starting with # in option files are ignored.

Using zack

    zack hello

This command line is equivalent to:

    ack -i --ignore-dir node_modules --nojs hello

Create another version of ack for just searching css files

Full syntax of wiz curry command is

    wiz curry <target-command> [<curry-cmd>]

Default <curry-cmd> is target command name prefixed with z.

Example creating a curry command with non-default name

    wiz curry ack ackcss

ackcss will use option files named ackcss.opts if exists

Remove zack from /usr/local/bin

    wiz unlink zack

Caveats

wiz has issues with interactive command-line tools and tools that behaves differently based on whether stdin is TTY or not.

In case of ag which falls in the second category, add --parallel option.