.__
____ __ __|__|
_/ ___\| | \ |
\ \___| | / |
\___ >____/|__|
\/
GUIs for the command line.
Why
Command line programs can be hard to learn / use / build.
How
cui is a preinstantiated object that can be require()
'd by multiple files and maintain its state. Use cui.push()
or cui.splice()
to add views or actions (see the Usage section) to a sequence of frames. Users of your program only need to know the name of your program - cui can walk them through providing the rest of the arguments on its own. If a user does know the full command, they can still type it out of course, for example running the basic example any of the following ways is valid:
example/basic
example/basic Three
example/basic Three hi!
Install
npm install cui
Examples
The examples are all executable scripts - try cd'ing into the example folder and typing ./all
Usage
This code below is essentially the same as in example/basic:
var cui = cui cui cui
Properties
args
any arguments passedresults
an array of results collected by views or manually augmented by actionscache
a cache object that will be automatically loaded & saved if not null (as a json file named '.cui')
Methods
push()
add a view or function to the end of the sequencesplice()
add a view or function after the current framelast(n)
returncui.results[results.length - n]
print()
basicallyconsole.log()
but with the same indentation level as specified inlib/ui
save()
persist the cache now - useful if your script may encounter future errors and exit early
License
MIT