1.0.0 • Published 5 years ago

mbr-prompt v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

mbr-prompt

Simple password prompt for NodeJS process. No symbols are being displayed while typing.

const prompt = require('mbr-prompt');

prompt('Please enter your password', function (password) {
  console.log('Entered password is:', password);
});

First argument is user-readable string - password input invitation.

Second argument is a callback, which receives user input value as an argument after Enter was pressed.