2.1.6 • Published 12 days ago

@inquirer/rawlist v2.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
12 days ago

@inquirer/rawlist

Simple interactive command line prompt to display a raw list of choices (single value select) with minimal interaction.

rawlist prompt

Installation

npm install @inquirer/rawlist

yarn add @inquirer/rawlist

Usage

import rawlist from '@inquirer/rawlist';

const answer = await rawlist({
  message: 'Select a package manager',
  choices: [
    { name: 'npm', value: 'npm' },
    { name: 'yarn', value: 'yarn' },
    { name: 'pnpm', value: 'pnpm' },
  ],
});

Options

PropertyTypeRequiredDescription
messagestringyesThe question to ask
choicesArray<{ value: string, name?: string, key?: string }>yesList of the available choices. The value will be returned as the answer, and used as display if no name is defined. By default, choices will be selected by index. This can be customized by using the key option.
themeSee ThemingnoCustomize look of the prompt.

Theming

You can theme a prompt by passing a theme object option. The theme object only need to includes the keys you wish to modify, we'll fallback on the defaults for the rest.

type Theme = {
  prefix: string;
  spinner: {
    interval: number;
    frames: string[];
  };
  style: {
    answer: (text: string) => string;
    message: (text: string) => string;
    error: (text: string) => string;
    highlight: (text: string) => string;
  };
};

License

Copyright (c) 2023 Simon Boudrias (twitter: @vaxilart) Licensed under the MIT license.

2.1.6

12 days ago

2.1.5

22 days ago

2.1.4

25 days ago

2.1.3

25 days ago

2.1.2

1 month ago

2.1.1

1 month ago

2.1.0

2 months ago

2.0.2

2 months ago

2.0.1

2 months ago

2.0.0

3 months ago

1.2.16

3 months ago

1.2.15

3 months ago

1.2.8

9 months ago

1.2.7

9 months ago

1.2.6

9 months ago

1.2.5

10 months ago

1.2.4

10 months ago

1.2.3

10 months ago

1.2.9

8 months ago

1.2.12

8 months ago

1.2.13

7 months ago

1.2.10

8 months ago

1.2.11

8 months ago

1.2.14

6 months ago

1.2.2

11 months ago

1.2.0

11 months ago

1.1.1

12 months ago

1.0.2

1 year ago

1.1.0

12 months ago

1.0.1

1 year ago

1.0.7

12 months ago

1.0.6

12 months ago

1.1.3

12 months ago

1.0.4

12 months ago

1.2.1

11 months ago

1.1.2

12 months ago

1.0.3

1 year ago

1.0.0

1 year ago

0.1.0

1 year ago

0.0.11-alpha.0

2 years ago

0.0.10-alpha.0

2 years ago

0.0.9-alpha.0

2 years ago

0.0.5-alpha.0

2 years ago

0.0.6-alpha.0

2 years ago

0.0.4-alpha.0

2 years ago

0.0.7-alpha.0

2 years ago

0.0.3-alpha.0

2 years ago

0.0.2-alpha.0

2 years ago