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

@yum-tty/prompts

v0.1.1

Published

Interactive prompts and forms for Bun. A TypeScript port of Huh.

Readme

Cinnamon Prompts

Interactive prompts and forms for Bun. A TypeScript port of Huh.

Cinnamon Prompts provides a simple way to build interactive command-line forms with text inputs, confirms, selects, and more.

Installation

bun add github:yum-tty/prompts

Or install from a specific package:

bun add cinnamon-prompts

Quick Start

import { Form, Input, Confirm, Group, run } from "cinnamon-prompts"

const form = Form([
  Group({
    title: "User Information",
    fields: [
      Input({
        title: "Name",
        placeholder: "Enter your name",
      }),
      Confirm({
        title: "Subscribe to newsletter?",
        affirmitive: "Yes",
        negative: "No",
      }),
    ],
  }),
])

const results = await run(form)
console.log(results)
// { "Name": "John", "Subscribe to newsletter?": true }

Features

Text Input

import { Input } from "cinnamon-prompts"

const input = Input({
  title: "Email",
  placeholder: "[email protected]",
  charLimit: 100,
  validate: (value) => value.includes("@"),
})

// Access value
console.log(input.value)

Confirm

import { Confirm } from "cinnamon-prompts"

const confirm = Confirm({
  title: "Delete file?",
  description: "This action cannot be undone",
  affirmitive: "Delete",
  negative: "Cancel",
  value: false,
})

// Access value
console.log(confirm.value) // true or false

Select

import { Select } from "cinnamon-prompts"

const select = Select({
  title: "Choose a color",
  options: [
    { label: "Red", value: "red" },
    { label: "Green", value: "green" },
    { label: "Blue", value: "blue" },
  ],
})

// Access value
console.log(select.value) // "red", "green", or "blue"

Multi-Select

import { MultiSelect } from "cinnamon-prompts"

const multiSelect = MultiSelect({
  title: "Select toppings",
  options: [
    { label: "Cheese", value: "cheese" },
    { label: "Pepperoni", value: "pepperoni" },
    { label: "Mushrooms", value: "mushrooms" },
  ],
})

// Access value
console.log(multiSelect.value) // ["cheese", "mushrooms"]

Forms

import { Form, Input, Confirm, Select, Group, run } from "cinnamon-prompts"

const form = Form([
  Group({
    title: "Account Setup",
    fields: [
      Input({ title: "Username", placeholder: "johndoe" }),
      Input({ title: "Email", placeholder: "[email protected]" }),
      Select({
        title: "Role",
        options: [
          { label: "User", value: "user" },
          { label: "Admin", value: "admin" },
        ],
      }),
    ],
  }),
  Group({
    title: "Preferences",
    fields: [
      Confirm({ title: "Dark mode?", value: true }),
      Confirm({ title: "Notifications?", value: true }),
    ],
  }),
])

const results = await run(form)

Keyboard Navigation

| Key | Action | |-----|--------| | ↑/↓ | Navigate options | | Tab | Next field | | Shift+Tab | Previous field | | Enter | Submit/Select | | Space | Toggle checkbox | | Esc | Cancel |

Validation

import { Input } from "cinnamon-prompts"

const input = Input({
  title: "Age",
  validate: (value) => {
    const age = parseInt(value)
    if (isNaN(age)) return "Please enter a number"
    if (age < 0 || age > 150) return "Please enter a valid age"
    return true
  },
})

Styling

import { Input } from "cinnamon-prompts"
import { NewStyle } from "caramel"

const input = Input({
  title: "Name",
  style: NewStyle().foreground("#7f00ff"),
})

API Reference

Input

| Option | Type | Description | |--------|------|-------------| | title | string | Field title | | description | string | Field description | | placeholder | string | Placeholder text | | value | string | Initial value | | charLimit | number | Max characters (0 = unlimited) | | validate | function | Validation function |

Confirm

| Option | Type | Description | |--------|------|-------------| | title | string | Field title | | description | string | Field description | | value | boolean | Initial value | | affirmitive | string | Affirmative button text | | negative | string | Negative button text |

Select

| Option | Type | Description | |--------|------|-------------| | title | string | Field title | | description | string | Field description | | options | Option[] | List of options | | value | string | Initial value | | filterable | boolean | Enable filtering |

MultiSelect

| Option | Type | Description | |--------|------|-------------| | title | string | Field title | | description | string | Field description | | options | MultiOption[] | List of options | | value | string[] | Initial values |

Form

| Option | Type | Description | |--------|------|-------------| | title | string | Form title | | width | number | Form width | | height | number | Form height |

Contributing

Contributions are welcome! Please read our Contributing Guide first.

License

MIT


Based on Huh by Charm.