Build Status

Console UI

Join the chat at https://gitter.im/awegmann/consoleui

Tiny java library that provides simple UI elements on ANSI console based terminals. ConsoleUI is inspired by Inquirer.js which is written in JavaScript.

Intention

I was impressed by JavaScript based Yeoman which leads the user through the process of creating new projects by querying with a simple user interface on the console. An investigation how this is done, brought me to Inquirer.js which implements a very simple and intuitive set of controls for checkbox, list and text input.

Because I didn't found anything comparable to this in the Java eco system, I decided to write Console UI as a library with the same easy 'look and feel'. Some parts of the API are also comparable, but Console UI is not a Java clone of Inquirer.js.

Features

Console UI currently supports:

A screen recording of the basic elements demo can be fund on Youtube console UI demo.

Dependencies

Console UI uses jansi and jline for the dirty console things.

Test Run

You can get an idea how the project works by looking at de.codeshelf.consoleui.Basic. You can run this by executing the following from the project root:

gradlew fatJar 
java -jar build/libs/consoleui-all-0.0.10.jar     # <- replace with the latest version

Usage

Before you can use Console UI the AnsiConsole library has to be initialized.

AnsiConsole.systemInstall();

Entry point to the builder classes is to create a new object of type ConsolePrompt.

ConsolePrompt prompt = new ConsolePrompt();

From the prompt object, use the getPromptBuilder() method to create the builder for all subsequent UI elements you want to use.

PromptBuilder promptBuilder = prompt.getPromptBuilder();

From with this PromptBuilder you can access UI builder with the following methods: