Deprecated. Use the confirm prompt or select prompt from enquirer
.
A CLI prompt with an iOS-style on/off switch.
switch-prompt uses cli-styles and prompt-skeleton to have a look & feel consistent with other prompts.
npm install switch-prompt
switchPrompt(question, [activeText], [inactiveText], [defaultValue])
const switchPrompt = require('switch-prompt')
switchPrompt('Send anonymous usage data?', 'yes', 'no', true)
.on('data', (e) => console.log('Interim value', e.value))
.on('submit', (v) => console.log('Submitted with', v))
.on('abort', (v) => console.log('Aborted with', v))
text-prompt
date-prompt
mail-prompt
multiselect-prompt
number-prompt
range-prompt
select-prompt
tree-select-prompt
cli-autocomplete
If you have a question, found a bug or want to propose a feature, have a look at the issues page.