Skip to main content
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
29%
Published
4 days ago (1.6.1)

@reliverse/prompts

๐Ÿ’– GitHub Sponsors โ€ข ๐Ÿ’ฌ Discord โ€ข ๐Ÿ“ฆ NPM โ€ข ๐Ÿ“š Docs โ€ข โœจ GitHub

@reliverse/prompts is your modern, type-safe toolkit for building delightful CLI experiences. It's fast, flexible, and built with developer joy in mind. Forget the clutter โ€” this is how CLI should feel.

โšก Why It Rocks

  • โœจ TypeScript-first โ€” fully typed prompts and helpers, with great DX
  • ๐Ÿ”ง Flexible Prompt Types โ€” input, password, select, multiselect, confirm, toggle, number, spinner, and more
  • ๐Ÿง  Smart validation โ€” works with Zod, TypeBox, or your own validators
  • ๐ŸŒˆ Accessible & Adaptive โ€” meets WCAG AA, handles terminal resizing & color contrast
  • ๐Ÿงฏ Crash-resistant โ€” gracefully exits on Ctrl+C or unexpected input
  • ๐ŸŽจ Custom theming โ€” make it match your CLI style
  • ๐Ÿš€ Zero boilerplate โ€” focus on the logic, not the wiring

๐Ÿ› ๏ธ Install

bun add @reliverse/prompts
# or npm, pnpm, yarn

Make sure you have Bun, Node.js, and Git installed.

๐Ÿงช Try It Out (Playground Mode)

Wanna test drive before integrating? Clone the repo and run:

git clone https://github.com/reliverse/prompts.git
cd prompts
bun i
bun dev

Then open examples/launcher.ts and explore different prompts.

example

๐Ÿงฉ Example Usage

import {
  startPrompt, // Initialize prompt session (optional)
  inputPrompt, // Ask for user input
} from "@reliverse/prompts";

await startPrompt({
  clearConsole: true,
  titleColor: "inverse",
  packageName: "@reliverse/cli",
  packageVersion: "1.0.0",
});

const username = await inputPrompt({
  id: "username",
  title: "Welcome!",
  content: "What's your name?",
});

console.log(`Hey there, ${username}!`);

๐Ÿ”Ž You can also use selectPrompt, multiselectPrompt, confirmPrompt, numberPrompt, spinnerPrompt, and more.

๐Ÿง  Bonus Goodies

  • โš™๏ธ Built-in argument parsing โ€” parse CLI args without a separate lib
  • ๐Ÿงช Unit-test friendly โ€” prompts can be mocked/stubbed
  • ๐Ÿ“š Minimal API surface โ€” easy to learn, hard to outgrow
  • ๐Ÿ’… Custom styles โ€” tweak colors, formats, and transitions

๐Ÿ” Why not Inquirer or Clack?

While we love other tools, @reliverse/prompts was built for:

  • Dev-first ergonomics
  • Fully typed workflows
  • Configurable theming
  • Better crash handling & UX polish

See feature comparison โ†’

๐Ÿ’ก Contributing

Wanna improve prompts or add something cool? PRs welcome!
This project favors functional programming over OOP โ€” no classes, just clean, composable logic.

Open a PR or discussion on GitHub.

๐Ÿ™ Shoutout

This wouldn't exist without these gems:

๐Ÿ“„ License

๐Ÿ’– MIT ยฉ 2025 blefnk Nazar Kornienko

Add Package

deno add jsr:@reliverse/rempts-core

Import symbol

import * as rempts_core from "@reliverse/rempts-core";

---- OR ----

Import directly with a jsr specifier

import * as rempts_core from "jsr:@reliverse/rempts-core";

Add Package

npx jsr add @reliverse/rempts-core

Import symbol

import * as rempts_core from "@reliverse/rempts-core";

Add Package

yarn dlx jsr add @reliverse/rempts-core

Import symbol

import * as rempts_core from "@reliverse/rempts-core";

Add Package

pnpm dlx jsr add @reliverse/rempts-core

Import symbol

import * as rempts_core from "@reliverse/rempts-core";

Add Package

bunx jsr add @reliverse/rempts-core

Import symbol

import * as rempts_core from "@reliverse/rempts-core";