Socket
Socket
Sign inDemoInstall

@types/inquirer

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/inquirer

TypeScript definitions for inquirer


Version published
Weekly downloads
2.3M
decreased by-7.91%
Maintainers
1
Weekly downloads
 
Created

What is @types/inquirer?

The @types/inquirer package provides TypeScript type definitions for Inquirer.js, a library for creating interactive command-line interfaces. These type definitions enable TypeScript developers to use Inquirer.js with type checking, ensuring that they are using the library's API correctly.

What are @types/inquirer's main functionalities?

Prompt Types

Demonstrates how to use different types of prompts such as 'input' for text input and 'list' for selecting from a list of options.

import inquirer from 'inquirer';

async function askQuestion() {
  const answers = await inquirer.prompt([
    {
      type: 'input',
      name: 'name',
      message: 'What's your name?',
    },
    {
      type: 'list',
      name: 'choice',
      message: 'Pick a choice:',
      choices: ['Choice A', 'Choice B'],
    }
  ]);

  console.log(answers);
}

askQuestion();

Validation

Shows how to validate user input to ensure it meets certain criteria, in this case, checking if the input is a number.

import inquirer from 'inquirer';

inquirer.prompt([
  {
    type: 'input',
    name: 'age',
    message: 'Enter your age:',
    validate: function(value) {
      var valid = !isNaN(parseFloat(value));
      return valid || 'Please enter a number';
    },
    filter: Number,
  }
]).then(answers => {
  console.log(`Your age is ${answers.age}`);
});

Conditional Questions

Illustrates how to ask questions conditionally based on previous answers using the 'when' property.

import inquirer from 'inquirer';

inquirer.prompt([
  {
    type: 'confirm',
    name: 'toBeAsked',
    message: 'Do you want to answer more questions?',
  },
  {
    type: 'input',
    name: 'moreInfo',
    message: 'Tell me more:',
    when: function(answers) {
      return answers.toBeAsked;
    }
  }
]).then(answers => {
  console.log(answers);
});

Other packages similar to @types/inquirer

FAQs

Package last updated on 08 Oct 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc