Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
.__
____ __ __|__|
_/ ___\| | \ |
\ \___| | / |
\___ >____/|__|
\/
GUIs for the command line.
Command line programs can be hard to learn / use / build.
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!
npm install cui
The examples are all executable scripts - try cd'ing into the example folder and typing ./all
This code below is essentially the same as in example/basic:
var cui = require('cui')
cui.push({
title: 'This is a very basic example.',
type: 'buttons',
data: [
'One',
'Two',
'Three'
]
})
cui.push(function(cb) {
if (cui.last(1) === 'Three') {
cui.splice({
title: 'Three is a special choice!',
type: 'fields',
data: 'Please type a word and press ENTER: '
})
}
cb()
})
cui.push(function(cb) {
console.log('You could do something now with: "' + cui.results.join('" and "') + '"')
cb()
})
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')push()
add a view or function to the end of the sequencesplice()
add a view or function after the current framelast(n)
return cui.results[results.length - n]
print()
basically console.log()
but with the same indentation level as specified in lib/ui
save()
persist the cache now - useful if your script may encounter future errors and exit earlyMIT
FAQs
GUIs for the command line
The npm package cui receives a total of 25 weekly downloads. As such, cui popularity was classified as not popular.
We found that cui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.