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 🙏

© 2025 – Pkg Stats / Ryan Hefner

yacliui

v0.4.0

Published

Yet Another CLI UI Library

Downloads

4

Readme


Install

npm install yacliui

This package supports Node 8 and above


It's a library. So import it into your scripts first:

const ui = require('yacliui')

API Overview

Messages

See the Example Script for more info.

ui.headline(str, align)

Type: Function

Prints a capitalized green headline with alignment

str

Type: String

The Headline string to show.

align

Type: String Default: left

You can either use left, center or right for the alignment.

Example

ui.headline('Nicely formatted headline')

ui.message(msg, state, showTime)

Type: Function

You can print a simple message with or without a timestamp, status string and colored status code.

msg

Type: String

state

Type: String|Number

showTime

Type: Boolean

Example

ui.message('Message without anything')
ui.message('Message with time code', true)
ui message('Message with time code and status string', '15ms', true)
ui.message('Message with time code and status code (warning)', 301, true)

ui.info(msg, showTime)

Type: Function

Shortcut for an info message in white with or without time stamp.

Example

ui.info('Info message in white')

ui.warning(msg, showTime)

Type: Function

Shortcut for an warning message in yellow with or without time stamp.

Example

ui.warning('Warning message in yellow')

ui.error(msg, showTime)

Type: Function

Shortcut for an error message in red with or without time stamp.

Example

ui.error('Error message in red', true) // with time stamp

ui.found(num, topic)

Type: Function

Shows a message how many items of a specific topic have been found.

Please note that the topic is an array of two strings: The singular and the plural! This only works in English since the function automatically uses »has been found« or »have been found«.

num

Type: Number

The number of items.

topic

Type: Array

An Array of the singular and plural word of the topic, such as:

const topic = ['item', 'items']

Example

ui.found(1, ['apple', 'apples'])
// Output: 1 apple has been found.
ui.found(6, ['apple', 'apples'])
// Output: 6 apples have been found.

ui.foundOf(num1, topic1, num2, topic2)

Type: Function

This function is basically the same as ui.found(), but shows how many items of a topic have been found in a number of items in another topic.

The options are the same like in the function above, but twice. You can leave the first topic array empty if you like.

Example

ui.foundof(7, [], 10, ['apple', 'apples'])
// Output: 7 of 10 apples have been found.
ui.foundOf(3, ['piece', 'pieces'], 10, ['apple', 'apples'])
// Output: 3 pieces of 10 apples have been found.

Lists

See the Example Script for more info.

ui.list(entries, opts)

Type: Function

Show an array as an unordered or ordered list.

entries

Type: Array

List entries as an array of strings.

opts.ordered

Type: Boolean Default: false

Show an ordered list instead of an unordered one.

Example

ui.list(['first', 'second', 'third'], { ordered: true })

ui.definitionList(entries, opts)

Show a definition list of an array of objects with term and definition:

entries

Type: Array

Definition list entries as an array of objects. The objects contain term and definition:

{
  term: 'UI',
  definition: 'User Interface'
}

opts.ordered

Type: Boolean Default: false

Show an ordered definition list instead of an unordered one. This shows three rows instead of two.

opts.padding

Type: Number Default: 2

Padding between term and definition.

Example

ui.definitionList([
  {
    term: 'First term',
    definition: 'First definition'
  },
  {
    term: 'First term',
    definition: 'First definition'
  }
], { padding: 4 })

Input

See the Example Script for more info.

Note: For now I use the popular library Prompts for the input section. I will code this later myself, so there is not another big dependency.

ui.ask(question, initial)

Type: Async Function Returns: String

Prompts a question and will return either the initial answer or the string the user has put in.

question

Type: String

The question the user will be asked.

initial

Type: String

The default value of an answer the user can confirm with enter.

Example

(async () => {
  var answer = await ui.ask('What is your name?', 'Anonymous')
  console.log('Your name is ' + answer + '.')
})()

ui.confirm(question, initial)

Type: Async Function Returns: Boolean

Prompts any question the user can answer with yes or no.

question

Type: String

The question the user will be asked.

initial

Type: Boolean

The default value of an answer the user can confirm with enter.

Example

(async () => {
  var pretty = await ui.confirm('Are you pretty?', true)
  if (pretty) {
    console.log('Yes, you are pretty!')
  } else {
    console.log('You are ugly as hell!')
  }
})()

Digits

See the Example Script for more info.

ui.digits(number, opts)

Type: Function

Prints a huge 3x5 font for numbers like temperatue or time. Please note, that this function is still under development!

number

Type: Number|String

The number to be displayed. Please note that by now only Numbers are fully functioning!

opts.max_digits

Type: Number Default: 4

The maximum of digits to be displayed.

opts.max_decimals

Type: Number Default: 2

The maximum of decimals to be displayed.

opts.fixed

Type: Boolean Default: true

If this option is true, the number of displayed characters always stay the same. If a number isn't in range of opts.max_digits and opts.max_decimals the number will be rounded within their boundaries.

If opts.fixed is false, only opts.max_decimals will be considered.

opts.color

Type: String Default: green

This is the color the whole number will be displayed in. You can use any definition of the color library chalk, e.g. blue.dim or white.bgRed.

Example

ui.digits(12.479, {
  max_decimals: 2,
  color: 'blue.dim'
})