Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manifoldco/promptui
Interactive prompt for command-line applications
https://github.com/manifoldco/promptui
cli command-line golang input interface
Last synced: 11 days ago
JSON representation
Interactive prompt for command-line applications
- Host: GitHub
- URL: https://github.com/manifoldco/promptui
- Owner: manifoldco
- License: bsd-3-clause
- Created: 2017-10-16T16:35:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T06:39:41.000Z (3 months ago)
- Last Synced: 2024-10-28T18:33:07.678Z (11 days ago)
- Topics: cli, command-line, golang, input, interface
- Language: Go
- Homepage: https://www.manifold.co
- Size: 168 KB
- Stars: 6,061
- Watchers: 58
- Forks: 336
- Open Issues: 89
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-go - manifoldco/promptui - line applications|5,497| (Popular)
- awesome - promptui
- awesome-github-star - promptui - line applications | manifoldco | 5687 | (Go)
- awesome-list - promptui - line applications | manifoldco | 4304 | (Go)
- awesome-go - Promptui
README
# promptui
Interactive prompt for command-line applications.
We built Promptui because we wanted to make it easy and fun to explore cloud
services with [manifold cli](https://github.com/manifoldco/manifold-cli).[Code of Conduct](./CODE_OF_CONDUCT.md) |
[Contribution Guidelines](./.github/CONTRIBUTING.md)[![GitHub release](https://img.shields.io/github/tag/manifoldco/promptui.svg?label=latest)](https://github.com/manifoldco/promptui/releases)
[![GoDoc](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/github.com/manifoldco/promptui)
[![Travis](https://img.shields.io/travis/manifoldco/promptui/master.svg)](https://travis-ci.org/manifoldco/promptui)
[![Go Report Card](https://goreportcard.com/badge/github.com/manifoldco/promptui)](https://goreportcard.com/report/github.com/manifoldco/promptui)
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](./LICENSE.md)## Overview
![promptui](https://media.giphy.com/media/xUNda0Ngb5qsogLsBi/giphy.gif)
Promptui is a library providing a simple interface to create command-line
prompts for go. It can be easily integrated into
[spf13/cobra](https://github.com/spf13/cobra),
[urfave/cli](https://github.com/urfave/cli) or any cli go application.Promptui has two main input modes:
- `Prompt` provides a single line for user input. Prompt supports
optional live validation, confirmation and masking the input.- `Select` provides a list of options to choose from. Select supports
pagination, search, detailed view and custom templates.For a full list of options check [GoDoc](https://godoc.org/github.com/manifoldco/promptui).
## Basic Usage
### Prompt
```go
package mainimport (
"errors"
"fmt"
"strconv""github.com/manifoldco/promptui"
)func main() {
validate := func(input string) error {
_, err := strconv.ParseFloat(input, 64)
if err != nil {
return errors.New("Invalid number")
}
return nil
}prompt := promptui.Prompt{
Label: "Number",
Validate: validate,
}result, err := prompt.Run()
if err != nil {
fmt.Printf("Prompt failed %v\n", err)
return
}fmt.Printf("You choose %q\n", result)
}
```### Select
```go
package mainimport (
"fmt""github.com/manifoldco/promptui"
)func main() {
prompt := promptui.Select{
Label: "Select Day",
Items: []string{"Monday", "Tuesday", "Wednesday", "Thursday", "Friday",
"Saturday", "Sunday"},
}_, result, err := prompt.Run()
if err != nil {
fmt.Printf("Prompt failed %v\n", err)
return
}fmt.Printf("You choose %q\n", result)
}
```### More Examples
See full list of [examples](https://github.com/manifoldco/promptui/tree/master/_examples)