Enquirer
Stylish, intuitive and user-friendly prompts, for Node.js. Used by eslint, ...
README
Enquirer
Stylish CLI prompts that are user-friendly, intuitive and easy to create.
>_ Prompts should be more like conversations than inquisitions▌
(Example shows Enquirer's Survey Prompt)
The terminal in all examples is Hyper, theme is hyper-monokai-extended.
See more prompt examples
Created by [jonschlinkert][jon] and [doowb][brian], Enquirer is fast, easy to use, and lightweight enough for small projects, while also being powerful and customizable enough for the most advanced use cases.
- Easy to implement - Uses promises and async/await and sensible defaults to make prompts easy to create and implement.
- Easy to use - Thrill your users with a better experience! Navigating around input and choices is a breeze. You can even create quizzes, or record and playback key bindings to aid with tutorials and videos.
- Intuitive - Keypress combos are available to simplify usage.
- Flexible - All prompts can be used standalone or chained together.
- Stylish - Easily override semantic styles and symbols for any part of the prompt.
- Pluggable - Add advanced features to Enquirer using plugins.
- Validation - Optionally validate user input with any prompt.
- Well tested - All prompts are well-tested, and tests are easy to create without having to use brittle, hacky solutions to spy on prompts or "inject" values.
- Examples - There are numerous examples available to help you get started.
If you like Enquirer, please consider starring or tweeting about this project to show your support. Thanks!
[issue]: https://github.com/enquirer/enquirer/issues/new
[pulls]: https://github.com/enquirer/enquirer/pulls
[jon]: https://github.com/jonschlinkert
[brian]: https://github.com/doowb
>_ Ready to start making prompts your users will love? ▌
❯ Getting started
Get started with Enquirer, the most powerful and easy-to-use Node.js library for creating interactive CLI prompts.
- Install
- Usage
- Enquirer
- Prompts
- Options
- About
❯ Install
Install with npm:
- ```sh
- $ npm install enquirer --save
- ```
Install with yarn:
- ```sh
- $ yarn add enquirer
- ```
_(Requires Node.js 8.6 or higher. Please let us know if you need support for an earlier version by creating an issue.)_
❯ Usage
Single prompt
The easiest way to get started with enquirer is to pass a question object to theprompt method.
- ``` js
- const { prompt } = require('enquirer');
- const response = await prompt({
- type: 'input',
- name: 'username',
- message: 'What is your username?'
- });
- console.log(response); // { username: 'jonschlinkert' }
- ```
_(Examples with await need to be run inside an async function)_
Multiple prompts
Pass an array of "question" objects to run a series of prompts.
- ``` js
- const response = await prompt([
- {
- type: 'input',
- name: 'name',
- message: 'What is your name?'
- },
- {
- type: 'input',
- name: 'username',
- message: 'What is your username?'
- }
- ]);
- console.log(response); // { name: 'Edward Chan', username: 'edwardmchan' }
- ```
Different ways to run enquirer
1. By importing the specific built-in prompt
- ``` js
- const { Confirm } = require('enquirer');
- const prompt = new Confirm({
- name: 'question',
- message: 'Did you like enquirer?'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer));
- ```
2. By passing the options to prompt
- ``` js
- const { prompt } = require('enquirer');
- prompt({
- type: 'confirm',
- name: 'question',
- message: 'Did you like enquirer?'
- })
- .then(answer => console.log('Answer:', answer));
- ```
❯ Enquirer
Enquirer is a prompt runner
Add Enquirer to your JavaScript project with following line of code.
- ``` js
- const Enquirer = require('enquirer');
- ```
The main export of this library is the Enquirer class, which has methods and features designed to simplify running prompts.
- ``` js
- const { prompt } = require('enquirer');
- const question = [
- {
- type: 'input',
- name: 'username',
- message: 'What is your username?'
- },
- {
- type: 'password',
- name: 'password',
- message: 'What is your password?'
- }
- ];
- let answers = await prompt(question);
- console.log(answers);
- ```
Prompts control how values are rendered and returned
Each individual prompt is a class with special features and functionality for rendering the types of values you want to show users in the terminal, and subsequently returning the types of values you need to use in your application.
How can I customize prompts?
Below in this guide you will find information about creating custom prompts. For now, we'll focus on how to customize an existing prompt.
All of the individual prompt classes in this library are exposed as static properties on Enquirer. This allows them to be used directly without usingenquirer.prompt().
Use this approach if you need to modify a prompt instance, or listen for events on the prompt.
Example
- ``` js
- const { Input } = require('enquirer');
- const prompt = new Input({
- name: 'username',
- message: 'What is your username?'
- });
- prompt.run()
- .then(answer => console.log('Username:', answer))
- .catch(console.error);
- ```
Enquirer API
Create an instance of Enquirer.
Params
options {Object}: (optional) Options to use with all prompts.
answers {Object}: (optional) Answers object to initialize with.
Example
- ``` js
- const Enquirer = require('enquirer');
- const enquirer = new Enquirer();
- ```
Register a custom prompt type.
Params
type {String}
fn {Function|Prompt}: Prompt class, or a function that returns a Prompt class.
returns {Object}: Returns the Enquirer instance
Example
- ``` js
- const Enquirer = require('enquirer');
- const enquirer = new Enquirer();
- enquirer.register('customType', require('./custom-prompt'));
- ```
Prompt function that takes a "question" object or array of question objects, and returns an object with responses from the user.
Params
questions {Array|Object}: Options objects for one or more prompts to run.
returns {Promise}: Promise that returns an "answers" object with the user's responses.
Example
- ``` js
- const Enquirer = require('enquirer');
- const enquirer = new Enquirer();
- const response = await enquirer.prompt({
- type: 'input',
- name: 'username',
- message: 'What is your username?'
- });
- console.log(response);
- ```
Use an enquirer plugin.
Params
plugin {Function}: Plugin function that takes an instance of Enquirer.
returns {Object}: Returns the Enquirer instance.
Example
- ``` js
- const Enquirer = require('enquirer');
- const enquirer = new Enquirer();
- const plugin = enquirer => {
- // do stuff to enquire instance
- };
- enquirer.use(plugin);
- ```
Prompt function that takes a "question" object or array of question objects, and returns an object with responses from the user.
Params
questions {Array|Object}: Options objects for one or more prompts to run.
returns {Promise}: Promise that returns an "answers" object with the user's responses.
Example
- ``` js
- const { prompt } = require('enquirer');
- const response = await prompt({
- type: 'input',
- name: 'username',
- message: 'What is your username?'
- });
- console.log(response);
- ```
❯ Prompts
This section is about Enquirer's prompts: what they look like, how they work, how to run them, available options, and how to customize the prompts or create your own prompt concept.
Getting started with Enquirer's prompts
- Prompt - The basePrompt class used by other prompts
- Prompt Types - The basePrompt class used by other prompts
- Custom Prompts - Enquirer 2.0 introduced the concept of prompt "types", with the goal of making custom prompts easier than ever to create and use.
Prompt
The base Prompt class is used to create all other prompts.
- ``` js
- const { Prompt } = require('enquirer');
- class MyCustomPrompt extends Prompt {}
- ```
See the documentation for creating custom prompts to learn more about how this works.
Prompt Options
Each prompt takes an options object (aka "question" object), that implements the following interface:
- ``` js
- {
- // required
- type: string | function,
- name: string | function,
- message: string | function | async function,
- // optional
- skip: boolean | function | async function,
- initial: string | function | async function,
- format: function | async function,
- result: function | async function,
- validate: function | async function,
- }
- ```
Each property of the options object is described below:
**Property** | **Required?** | **Type** | **Description** |
---|---|---|---|
------------ | ------------- | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
`type` | yes | `string\|function` | Enquirer |
`name` | yes | `string\|function` | Used |
`message` | yes | `string\|function` | The |
`skip` | no | `boolean\|function` | If |
`initial` | no | `string\|function` | The |
`format` | no | `function` | Function |
`result` | no | `function` | Function |
`validate` | no | `function` | Function |
Example usage
- ``` js
- const { prompt } = require('enquirer');
- const question = {
- type: 'input',
- name: 'username',
- message: 'What is your username?'
- };
- prompt(question)
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
❯ Built-in prompts
AutoComplete Prompt
Prompt that auto-completes as the user types, and returns the selected value as a string.
Example Usage
- ``` js
- const { AutoComplete } = require('enquirer');
- const prompt = new AutoComplete({
- name: 'flavor',
- message: 'Pick your favorite flavor',
- limit: 10,
- initial: 2,
- choices: [
- 'Almond',
- 'Apple',
- 'Banana',
- 'Blackberry',
- 'Blueberry',
- 'Cherry',
- 'Chocolate',
- 'Cinnamon',
- 'Coconut',
- 'Cranberry',
- 'Grape',
- 'Nougat',
- 'Orange',
- 'Pear',
- 'Pineapple',
- 'Raspberry',
- 'Strawberry',
- 'Vanilla',
- 'Watermelon',
- 'Wintergreen'
- ]
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
AutoComplete Options
Option | Type | Default | Description |
---|---|---|---|
----------- | ---------- | ------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
`highlight` | `function` | `dim` | The |
`multiple` | `boolean` | `false` | Allow |
`suggest` | `function` | Greedy | Function |
`initial` | `number` | 0 | Preselected |
`footer` | `function` | None | Function |
Related prompts
- Select
- Survey
BasicAuth Prompt
Prompt that asks for username and password to authenticate the user. The default implementation of authenticate function in BasicAuth prompt is to compare the username and password with the values supplied while running the prompt. The implementer is expected to override the authenticate function with a custom logic such as making an API request to a server to authenticate the username and password entered and expect a token back.
Example Usage
- ``` js
- const { BasicAuth } = require('enquirer');
- const prompt = new BasicAuth({
- name: 'password',
- message: 'Please enter your password',
- username: 'rajat-sr',
- password: '123',
- showPassword: true
- });
- prompt
- .run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Confirm Prompt
Prompt that returns true or false.
Example Usage
- ``` js
- const { Confirm } = require('enquirer');
- const prompt = new Confirm({
- name: 'question',
- message: 'Want to answer?'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Related prompts
- Input
- Numeral
- Password
Form Prompt
Prompt that allows the user to enter and submit multiple values on a single terminal screen.
Example Usage
- ``` js
- const { Form } = require('enquirer');
- const prompt = new Form({
- name: 'user',
- message: 'Please provide the following information:',
- choices: [
- { name: 'firstname', message: 'First Name', initial: 'Jon' },
- { name: 'lastname', message: 'Last Name', initial: 'Schlinkert' },
- { name: 'username', message: 'GitHub username', initial: 'jonschlinkert' }
- ]
- });
- prompt.run()
- .then(value => console.log('Answer:', value))
- .catch(console.error);
- ```
Related prompts
- Input
- Survey
Input Prompt
Prompt that takes user input and returns a string.
Example Usage
- ``` js
- const { Input } = require('enquirer');
- const prompt = new Input({
- message: 'What is your username?',
- initial: 'jonschlinkert'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.log);
- ```
Related prompts
- Confirm
- Numeral
- Password
Invisible Prompt
Prompt that takes user input, hides it from the terminal, and returns a string.
Example Usage
- ``` js
- const { Invisible } = require('enquirer');
- const prompt = new Invisible({
- name: 'secret',
- message: 'What is your secret?'
- });
- prompt.run()
- .then(answer => console.log('Answer:', { secret: answer }))
- .catch(console.error);
- ```
Related prompts
- Password
- Input
List Prompt
Prompt that returns a list of values, created by splitting the user input. The default split character is , with optional trailing whitespace.
Example Usage
- ``` js
- const { List } = require('enquirer');
- const prompt = new List({
- name: 'keywords',
- message: 'Type comma-separated keywords'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Related prompts
- Sort
- Select
MultiSelect Prompt
Prompt that allows the user to select multiple items from a list of options.
Example Usage
- ``` js
- const { MultiSelect } = require('enquirer');
- const prompt = new MultiSelect({
- name: 'value',
- message: 'Pick your favorite colors',
- limit: 7,
- choices: [
- { name: 'aqua', value: '#00ffff' },
- { name: 'black', value: '#000000' },
- { name: 'blue', value: '#0000ff' },
- { name: 'fuchsia', value: '#ff00ff' },
- { name: 'gray', value: '#808080' },
- { name: 'green', value: '#008000' },
- { name: 'lime', value: '#00ff00' },
- { name: 'maroon', value: '#800000' },
- { name: 'navy', value: '#000080' },
- { name: 'olive', value: '#808000' },
- { name: 'purple', value: '#800080' },
- { name: 'red', value: '#ff0000' },
- { name: 'silver', value: '#c0c0c0' },
- { name: 'teal', value: '#008080' },
- { name: 'white', value: '#ffffff' },
- { name: 'yellow', value: '#ffff00' }
- ]
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- // Answer: ['aqua', 'blue', 'fuchsia']
- ```
Example key-value pairs
Optionally, pass a result function and use the .map method to return an object of key-value pairs of the selected names and values: example
- ``` js
- const { MultiSelect } = require('enquirer');
- const prompt = new MultiSelect({
- name: 'value',
- message: 'Pick your favorite colors',
- limit: 7,
- choices: [
- { name: 'aqua', value: '#00ffff' },
- { name: 'black', value: '#000000' },
- { name: 'blue', value: '#0000ff' },
- { name: 'fuchsia', value: '#ff00ff' },
- { name: 'gray', value: '#808080' },
- { name: 'green', value: '#008000' },
- { name: 'lime', value: '#00ff00' },
- { name: 'maroon', value: '#800000' },
- { name: 'navy', value: '#000080' },
- { name: 'olive', value: '#808000' },
- { name: 'purple', value: '#800080' },
- { name: 'red', value: '#ff0000' },
- { name: 'silver', value: '#c0c0c0' },
- { name: 'teal', value: '#008080' },
- { name: 'white', value: '#ffffff' },
- { name: 'yellow', value: '#ffff00' }
- ],
- result(names) {
- return this.map(names);
- }
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- // Answer: { aqua: '#00ffff', blue: '#0000ff', fuchsia: '#ff00ff' }
- ```
Related prompts
- Select
- Survey
Numeral Prompt
Prompt that takes a number as input.
Example Usage
- ``` js
- const { NumberPrompt } = require('enquirer');
- const prompt = new NumberPrompt({
- name: 'number',
- message: 'Please enter a number'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Related prompts
- Input
- Confirm
Password Prompt
Prompt that takes user input and masks it in the terminal. Also see the invisible prompt
Example Usage
- ``` js
- const { Password } = require('enquirer');
- const prompt = new Password({
- name: 'password',
- message: 'What is your password?'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Related prompts
- Input
Quiz Prompt
Prompt that allows the user to play multiple-choice quiz questions.
Example Usage
- ``` js
- const { Quiz } = require('enquirer');
- const prompt = new Quiz({
- name: 'countries',
- message: 'How many countries are there in the world?',
- choices: ['165', '175', '185', '195', '205'],
- correctChoice: 3
- });
- prompt
- .run()
- .then(answer => {
- if (answer.correct) {
- console.log('Correct!');
- } else {
- console.log(`Wrong! Correct answer is ${answer.correctAnswer}`);
- }
- })
- .catch(console.error);
- ```
Quiz Options
Option | Type | Required | Description |
---|---|---|---|
----------- | ---------- | ---------- | ------------------------------------------------------------------------------------------------------------ |
`choices` | `array` | Yes | The |
`correctChoice`| | Yes | Index |
Survey Prompt
Prompt that allows the user to provide feedback for a list of questions.
Example Usage
- ``` js
- const { Survey } = require('enquirer');
- const prompt = new Survey({
- name: 'experience',
- message: 'Please rate your experience',
- scale: [
- { name: '1', message: 'Strongly Disagree' },
- { name: '2', message: 'Disagree' },
- { name: '3', message: 'Neutral' },
- { name: '4', message: 'Agree' },
- { name: '5', message: 'Strongly Agree' }
- ],
- margin: [0, 0, 2, 1],
- choices: [
- {
- name: 'interface',
- message: 'The website has a friendly interface.'
- },
- {
- name: 'navigation',
- message: 'The website is easy to navigate.'
- },
- {
- name: 'images',
- message: 'The website usually has good images.'
- },
- {
- name: 'upload',
- message: 'The website makes it easy to upload images.'
- },
- {
- name: 'colors',
- message: 'The website has a pleasing color palette.'
- }
- ]
- });
- prompt.run()
- .then(value => console.log('ANSWERS:', value))
- .catch(console.error);
- ```
Related prompts
- Scale
- Snippet
- Select
Scale Prompt
A more compact version of the Survey prompt, the Scale prompt allows the user to quickly provide feedback using a Likert Scale.
Example Usage
- ``` js
- const { Scale } = require('enquirer');
- const prompt = new Scale({
- name: 'experience',
- message: 'Please rate your experience',
- scale: [
- { name: '1', message: 'Strongly Disagree' },
- { name: '2', message: 'Disagree' },
- { name: '3', message: 'Neutral' },
- { name: '4', message: 'Agree' },
- { name: '5', message: 'Strongly Agree' }
- ],
- margin: [0, 0, 2, 1],
- choices: [
- {
- name: 'interface',
- message: 'The website has a friendly interface.',
- initial: 2
- },
- {
- name: 'navigation',
- message: 'The website is easy to navigate.',
- initial: 2
- },
- {
- name: 'images',
- message: 'The website usually has good images.',
- initial: 2
- },
- {
- name: 'upload',
- message: 'The website makes it easy to upload images.',
- initial: 2
- },
- {
- name: 'colors',
- message: 'The website has a pleasing color palette.',
- initial: 2
- }
- ]
- });
- prompt.run()
- .then(value => console.log('ANSWERS:', value))
- .catch(console.error);
- ```
Related prompts
- Select
- Survey
Select Prompt
Prompt that allows the user to select from a list of options.
Example Usage
- ``` js
- const { Select } = require('enquirer');
- const prompt = new Select({
- name: 'color',
- message: 'Pick a flavor',
- choices: ['apple', 'grape', 'watermelon', 'cherry', 'orange']
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Related prompts
Sort Prompt
Prompt that allows the user to sort items in a list.
Example
In this example, custom styling is applied to the returned values to make it easier to see what's happening.
Example Usage
- ``` js
- const colors = require('ansi-colors');
- const { Sort } = require('enquirer');
- const prompt = new Sort({
- name: 'colors',
- message: 'Sort the colors in order of preference',
- hint: 'Top is best, bottom is worst',
- numbered: true,
- choices: ['red', 'white', 'green', 'cyan', 'yellow'].map(n => ({
- name: n,
- message: colors[n](n)
- }))
- });
- prompt.run()
- .then(function(answer = []) {
- console.log(answer);
- console.log('Your preferred order of colors is:');
- console.log(answer.map(key => colors[key](key)).join('\n'));
- })
- .catch(console.error);
- ```
Related prompts
- List
- Select
Snippet Prompt
Prompt that allows the user to replace placeholders in a snippet of code or text.
Example Usage
- ``` js
- const semver = require('semver');
- const { Snippet } = require('enquirer');
- const prompt = new Snippet({
- name: 'username',
- message: 'Fill out the fields in package.json',
- required: true,
- fields: [
- {
- name: 'author_name',
- message: 'Author Name'
- },
- {
- name: 'version',
- validate(value, state, item, index) {
- if (item && item.name === 'version' && !semver.valid(value)) {
- return prompt.styles.danger('version should be a valid semver value');
- }
- return true;
- }
- }
- ],
- template: `{
- "name": "\${name}",
- "description": "\${description}",
- "version": "\${version}",
- "homepage": "https://github.com/\${username}/\${name}",
- "author": "\${author_name} (https://github.com/\${username})",
- "repository": "\${username}/\${name}",
- "license": "\${license:ISC}"
- }
- `
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer.result))
- .catch(console.error);
- ```
Related prompts
- Survey
Toggle Prompt
Prompt that allows the user to toggle between two values then returns true or false.
Example Usage
- ``` js
- const { Toggle } = require('enquirer');
- const prompt = new Toggle({
- message: 'Want to answer?',
- enabled: 'Yep',
- disabled: 'Nope'
- });
- prompt.run()
- .then(answer => console.log('Answer:', answer))
- .catch(console.error);
- ```
Related prompts
- Confirm
- Input
- Sort
Prompt Types
There are 5 (soon to be 6!) type classes:
- Options
- Methods
- Choices
DatePrompt (Coming Soon!)
Each type is a low-level class that may be used as a starting point for creating higher level prompts. Continue reading to learn how.
ArrayPrompt
The ArrayPrompt class is used for creating prompts that display a list of choices in the terminal. For example, Enquirer uses this class as the basis for the Select and Survey prompts.
Options
In addition to the options available to all prompts, Array prompts also support the following options.
**Option** | **Required?** | **Type** | **Description** |
---|---|---|---|
----------- | ------------- | --------------- | ----------------------------------------------------------------------------------------------------------------------- |
`autofocus` | `no` | `string\|number` | The |
`stdin` | `no` | `stream` | The |
`stdout` | `no` | `stream` | The |
| |
Properties
Array prompts have the following instance properties and getters.
**Property | **Type** | **Description** |
---|---|---|
----------------- | --------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
`choices` | `array` | Array |
`cursor` | `number` | Position |
`enabled` | `array` | Returns |
`focused` | `array` | Returns |
`focused` | Gets | |
`index` | `number` | Position |
`limit` | `number` | The |
`selected` | `array` | Either |
`visible` | `string` | | |
Methods
**Method** | **Description** |
---|---|
------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
`pointer()` | Returns |
`indicator()` | Returns |
`focus()` | Sets |
Choices
Array prompts support the choices option, which is the array of choices users will be able to select from when rendered in the terminal.
Type: string|object
Example
- ``` js
- const { prompt } = require('enquirer');
- const questions = [{
- type: 'select',
- name: 'color',
- message: 'Favorite color?',
- initial: 1,
- choices: [
- { name: 'red', message: 'Red', value: '#ff0000' }, //<= choice object
- { name: 'green', message: 'Green', value: '#00ff00' }, //<= choice object
- { name: 'blue', message: 'Blue', value: '#0000ff' } //<= choice object
- ]
- }];
- let answers = await prompt(questions);
- console.log('Answer:', answers.color);
- ```
Defining choices
Whether defined as a string or object, choices are normalized to the following interface:
- ``` js
- {
- name: string;
- message: string | undefined;
- value: string | undefined;
- hint: string | undefined;
- disabled: boolean | string | undefined;
- }
- ```
Example
- ``` js
- const question = {
- name: 'fruit',
- message: 'Favorite fruit?',
- choices: ['Apple', 'Orange', 'Raspberry']
- };
- ```
Normalizes to the following when the prompt is run:
- ``` js
- const question = {
- name: 'fruit',
- message: 'Favorite fruit?',
- choices: [
- { name: 'Apple', message: 'Apple', value: 'Apple' },
- { name: 'Orange', message: 'Orange', value: 'Orange' },
- { name: 'Raspberry', message: 'Raspberry', value: 'Raspberry' }
- ]
- };
- ```
Choice properties
The following properties are supported on choice objects.
**Option** | **Type** | **Description** |
---|---|---|
----------- | ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
`name` | `string` | The |
`message` | `string` | The |
`value` | `string` | Value |
`choices` | `array` | Array |
`hint` | `string` | Help |
`role` | `string` | Determines |
`enabled` | `boolean` | Enabled |
`disabled` | `boolean\|string` | Disable |
`indicator` | `string\|function` | Custom |
Related prompts
- Form
- Select
- Survey
AuthPrompt
The AuthPrompt is used to create prompts to log in user using any authentication method. For example, Enquirer uses this class as the basis for the BasicAuth Prompt. You can also find prompt examples inexamples/auth/ folder that utilizes AuthPrompt to create OAuth based authentication prompt or a prompt that authenticates using time-based OTP, among others.
AuthPrompt has a factory function that creates an instance of AuthPrompt class and it expects an authenticate function, as an argument, which overrides the authenticate function of the AuthPrompt class.
Methods
**Method** | **Description** |
---|---|
------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
`authenticate()` | Contain |
Choices
Auth prompt supports the choices option, which is the similar to the choices used in Form Prompt.
Example
- ``` js
- const { AuthPrompt } = require('enquirer');
- function authenticate(value, state) {
- if (value.username === this.options.username && value.password === this.options.password) {
- return true;
- }
- return false;
- }
- const CustomAuthPrompt = AuthPrompt.create(authenticate);
- const prompt = new CustomAuthPrompt({
- name: 'password',
- message: 'Please enter your password',
- username: 'rajat-sr',
- password: '1234567',
- choices: [
- { name: 'username', message: 'username' },
- { name: 'password', message: 'password' }
- ]
- });
- prompt
- .run()
- .then(answer => console.log('Authenticated?', answer))
- .catch(console.error);
- ```
Related prompts
BooleanPrompt
The BooleanPrompt class is used for creating prompts that display and return a boolean value.
- ``` js
- const { BooleanPrompt } = require('enquirer');
- const prompt = new BooleanPrompt({
- header: '========================',
- message: 'Do you love enquirer?',
- footer: '========================',
- });
- prompt.run()
- .then(answer => console.log('Selected:', answer))
- .catch(console.error);
- ```
Returns: boolean
NumberPrompt
The NumberPrompt class is used for creating prompts that display and return a numerical value.
- ``` js
- const { NumberPrompt } = require('enquirer');
- const prompt = new NumberPrompt({
- header: '************************',
- message: 'Input the Numbers:',
- footer: '************************',
- });
- prompt.run()
- .then(answer => console.log('Numbers are:', answer))
- .catch(console.error);
- ```
Returns: string|number (number, or number formatted as a string)
StringPrompt
The StringPrompt class is used for creating prompts that display and return a string value.
- ``` js
- const { StringPrompt } = require('enquirer');
- const prompt = new StringPrompt({
- header: '************************',
- message: 'Input the String:',
- footer: '************************'
- });
- prompt.run()
- .then(answer => console.log('String is:', answer))
- .catch(console.error);
- ```
Returns: string
❯ Custom prompts
With Enquirer 2.0, custom prompts are easier than ever to create and use.
How do I create a custom prompt?
Custom prompts are created by extending either:
- Enquirer's Prompt class
- one of the built-in prompts, or
- low-level types.
- ``` js
- const { Prompt } = require('enquirer');
- class HaiKarate extends Prompt {
- constructor(options = {}) {
- super(options);
- this.value = options.initial || 0;
- this.cursorHide();
- }
- up() {
- this.value++;
- this.render();
- }
- down() {
- this.value--;
- this.render();
- }
- render() {
- this.clear(); // clear previously rendered prompt from the terminal
- this.write(`${this.state.message}: ${this.value}`);
- }
- }
- // Use the prompt by creating an instance of your custom prompt class.
- const prompt = new HaiKarate({
- message: 'How many sprays do you want?',
- initial: 10
- });
- prompt.run()
- .then(answer => console.log('Sprays:', answer))
- .catch(console.error);
- ```
If you want to be able to specify your prompt by type so that it may be used alongside other prompts, you will need to first create an instance of Enquirer.
- ``` js
- const Enquirer = require('enquirer');
- const enquirer = new Enquirer();
- ```
Then use the .register() method to add your custom prompt.
- ``` js
- enquirer.register('haikarate', HaiKarate);
- ```
Now you can do the following when defining "questions".
- ``` js
- let spritzer = require('cologne-drone');
- let answers = await enquirer.prompt([
- {
- type: 'haikarate',
- name: 'cologne',
- message: 'How many sprays do you need?',
- initial: 10,
- async onSubmit(name, value) {
- await spritzer.activate(value); //<= activate drone
- return value;
- }
- }
- ]);
- ```
❯ Key Bindings
All prompts
These key combinations may be used with all prompts.
**command** | **description** |
---|---|
-------------------------------- | -------------------------------------- |
ctrl | Cancel |
ctrl | Reset |
Move cursor
These combinations may be used on prompts that support user input (eg. input prompt, password prompt, and invisible prompt).
**command** | **description** |
---|---|
------------------------------ | ---------------------------------------- |
left | Move |
right | Move |
ctrl | Move |
ctrl | Move |
ctrl | Move |
ctrl | Move |
ctrl | Toggle |
Edit Input
These key combinations may be used on prompts that support user input (eg. input prompt, password prompt, and invisible prompt).
**command** | **description** |
---|---|
------------------------------ | ---------------------------------------- |
ctrl | Move |
ctrl | Move |
ctrl | Move |
ctrl | Move |
ctrl | Toggle |
**command | **command | **description** |
---|---|---|
----------------------------------- | -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
delete | backspace | Delete |
fn | delete | Delete |
option | alt | Scroll |
option | alt | Scroll |
Select choices
These key combinations may be used on prompts that support _multiple_ choices, such as the multiselect prompt, or the select prompt when themultiple options is true.
**command** | **description** |
---|---|
----------------- | -------------------------------------------------------------------------------------------------------------------- |
space | Toggle |
number | Move |
a | Toggle |
i | Invert |
g | Toggle |
Hide/show choices
**command** | **description** |
---|---|
------------------------------- | ---------------------------------------------- |
fn | Decrease |
fn | Increase |
Move/lock Pointer
**command** | **description** |
---|---|
---------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
number | Move |
up | Move |
down | Move |
ctrl | Move |
ctrl | Move |
shift | Scroll |
shift | Scroll |
**command | **command | **description** |
---|---|---|
-------------------------------- | --------------------- | ---------------------------------------------------------- |
fn | home | Move |
fn | end | Move |
❯ Release History
Please see CHANGELOG.md.
❯ Performance
System specs
MacBook Pro, Intel Core i7, 2.5 GHz, 16 GB.
Load time
Time it takes for the module to load the first time (average of 3 runs):
- ```
- enquirer: 4.013ms
- inquirer: 286.717ms
- ```
❯ About
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Todo
We're currently working on documentation for the following items. Please star and watch the repository for updates!
[ ] Customizing symbols
[ ] Customizing styles (palette)
[ ] Customizing rendered input
[ ] Customizing returned values
[ ] Customizing key bindings
[ ] Question validation
[ ] Choice validation
[ ] Skipping questions
[ ] Async choices
[ ] Async timers: loaders, spinners and other animations
[ ] Links to examples
Running Tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
- ```sh
- $ npm install && npm test
- ```
- ```sh
- $ yarn && yarn test
- ```
Building docs
_(This project's readme.md is generated by [verb](https://github.com/verbose/v