Socket
Socket
Sign inDemoInstall

inquirer-autosubmit-prompt

Package Overview
Dependencies
32
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    inquirer-autosubmit-prompt

Auto submit plugin for Inquirer.js


Version published
Weekly downloads
74K
decreased by-24.31%
Maintainers
1
Install size
7.11 MB
Created
Weekly downloads
 

Readme

Source

inquirer-autosubmit-prompt

Installation

npm install --save inquirer-autosubmit-prompt

Usage

It extends Inquire.js's default input and password with auto submit.

inquirer.registerPrompt('autosubmit', require('inquirer-autosubmit-prompt'));
inquirer.prompt({
  type: 'autosubmit',
  ...
})

Options

See inquirer readme for meaning of all except autoSubmit and secret.

secret indicates this is a password prompt. Defaults to false (input prompt).

autoSubmit should be a function which takes the current input and returns a boolean. If condition is true, current input will be submitted, without user typing enter.

Example

const inquirer = require('inquirer');
inquirer.registerPrompt('autosubmit', require('inquirer-autosubmit-promt'));

const questions = [
	{
		type: 'autosubmit',
		name: 'first_name',
		message: 'What\'s your first name',
		autoSubmit: input => input.length === 6
	}
];

inquirer.prompt(questions).then(answers => {
	console.log(JSON.stringify(answers, null, '  '));
});

Credits

Yao Ding

License

MIT

Keywords

FAQs

Last updated on 27 Jan 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc