@reliverse/rempts-core@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 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
๐ก 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";