prompt-password
Password prompt. Can be used as a standalone prompt, or as a plugin for Enquirer.
Install
Install with npm:
$ npm install --save prompt-password
Usage
var Prompt = ;var prompt = type: 'password' message: 'Enter your password please' name: 'password'; prompt ;
mask function
Use prompt-password-strength, or pass a function to customize how the input is masked:
var Prompt = ;var prompt = type: 'password' message: 'Enter your password please' name: 'password' { return '█' + Stringinputlength; }; prompt ;
Enquirer usage
Use the .register
method to add the "password" prompt type to enquirer:
var Enquirer = ;var enquirer = ; enquirer; // questions can be an array or objectvar questions = type: 'password' message: 'Enter your password please' name: 'password'; enquirer ;
Attribution
Based on the password
prompt in inquirer.
About
Related projects
- enquirer: Intuitive, plugin-based prompt system for node.js. | homepage
- prompt-base: Base prompt module used for creating custom prompts. | homepage
- prompt-question: Question object, used by Enquirer and prompt plugins. | homepage
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
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:
$ npm install && npm test
Author
Jon Schlinkert
License
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on June 05, 2017.