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

hyper-ink-badge

v1.0.5

Published

Plugin for Hyper terminal which shows a session budge.

Readme

Hyper InkBadge

HyperInkBadge is a badge plugin for Hyper.app. It shows you a badge telling you the current session by ink color. Besides the colored ink, it could show text information as badges. This plugin is inspired by Badges of iTerm2 and Splatoon!

overview

Install

You can install hyper-ink-badge by hyper command or editing ~/.hyper.js.

  1. Use hyper command.
$ hyper install hyper-ink-badge
  1. Or, edit ~/.hyper.js and add "hyper-ink-badge" to the plugins array as bellow.
   plugins: [ "hyper-ink-badge" ],

Features & Demo

Change the color

You can change color of badge via GUI or CLI.

  1. GUI: Just click the badge, and colors are changed into new one selected from the template.
  2. CLI: Specify color codes with quoted ink-badge command as below.
$'ink-badge #5FA, #3B3'

chagecolor

  • Hold down the command key and click the badge to open the color picker.

colorpicker

Set text

  • Use quoted ink-badge command with some text as below.
$ 'ink-badge Hello World'

Fix the color to 'Tab title'

  • Hold down the shift key and click the badge to fix current badge to current tab title.

fixtotitle

Configuration.

Edit ~/.hyper.js and add hyperInkBadge object in config section as bellow.

module.exports = {
  config: {
    hyperInkBadge: {
        command: 'ink',
        templateColors: [
            ['#e78a48', '#ffffff'], 
            ['#d9503f', '#5186ec'],
            ['#3472b4', '#4aabb8'],
        ],
        advancedPicker: true,
        fontPath: 'file:///tmp/ikamodoki.woff',
        imagePath: 'file:///tmp/slime.svg',
        baseColors: ['#0096d9', '#e5004a'],
    },
  }
}

command

change cli command key. default is value is ink-badge.

command: 'ink'

templateColors

Specify the template colors that used to change color by clicking the badge.

templateColors: [
  ['#e78a48', '#ffffff'], 
  ['#d9503f', '#5186ec'],
  ['#3472b4', '#4aabb8'],
],

advancedPicker

Set true, you can use color picker that enables you to select more detailed color. default false.

advancedPicker: true

fontPath

You can use your favorite font. default font is 'paintball_web.woff' created by 'Project Paintball'

fontPath: 'file:///tmp/myfont.woff'

imagePath & baseColors

You can use your favarite SVG image instead of default ink image. Besides specifing imagePath, you have to set the baseColors value which indicates the changeable colors.

imagePath: 'file:///tmp/slime.svg',
baseColors: ['#0096d9', '#e5004a'],

2018-07-04 18 53 02

Licence

MIT