Gathering detailed insights and metrics for @developertheexplorer/select
Gathering detailed insights and metrics for @developertheexplorer/select
npm install @developertheexplorer/select
Typescript
Module System
Node Version
NPM Version
68.3
Supply Chain
81.7
Quality
75
Maintenance
100
Vulnerability
100
License
@inquirer/prompts@7.3.3
Updated on Mar 08, 2025
@inquirer/core@10.1.8
Updated on Mar 08, 2025
inquirer@12.4.3
Updated on Mar 08, 2025
inquirer@12.4.1
Updated on Feb 04, 2025
@inquirer/prompts@7.3.1
Updated on Feb 02, 2025
inquirer@12.4.0
Updated on Feb 04, 2025
TypeScript (91.45%)
JavaScript (8.55%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
238
Last Day
1
Last Week
1
Last Month
4
Last Year
54
MIT License
20,625 Stars
1,705 Commits
1,313 Forks
148 Watchers
10 Branches
209 Contributors
Updated on Mar 14, 2025
Latest Version
1.0.0
Package Id
@developertheexplorer/select@1.0.0
Unpacked Size
6.83 kB
Size
2.88 kB
File Count
5
NPM Version
lerna/4.0.0/node@v16.14.2+arm64 (darwin)
Node Version
16.14.2
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
0%
1
Compared to previous week
Last Month
-55.6%
4
Compared to previous month
Last Year
-28%
54
Compared to previous year
3
@inquirer/select
Simple interactive command line prompt to display a list of choices (single select.)
1npm install @inquirer/select 2 3yarn add @inquirer/select
1import select from '@inquirer/select'; 2 3const answer = await select({ 4 message: 'Select a package manager', 5 choices: [ 6 { 7 name: 'npm', 8 value: 'npm', 9 description: 'npm is the most popular package manager', 10 }, 11 { 12 name: 'yarn', 13 value: 'yarn', 14 description: 'yarn is an awesome package manager', 15 }, 16 { 17 name: 'jspm', 18 value: 'jspm', 19 disabled: true, 20 }, 21 ], 22});
Property | Type | Required | Description |
---|---|---|---|
message | string | yes | The question to ask |
choices | Array<{ value: string, name?: string, description?: string, disabled?: boolean }> | yes | List of the available choices. The value will be returned as the answer, and used as display if no name is defined. Choices who're disabled will be displayed, but not selectable. The description will be displayed under the prompt when the cursor land over the choice. |
pageSize | number | no | By default, lists of choice longer than 7 will be paginated. Use this option to control how many choices will appear on the screen at once. |
Copyright (c) 2022 Simon Boudrias (twitter: @vaxilart) Licensed under the MIT license.
No vulnerabilities found.
Reason
30 commit(s) and 11 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 3/17 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Score
Last Scanned on 2025-03-10
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More