1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00
musix-oss/node_modules/getpass
MatteZ02 5eb0264906 fix
2019-05-30 12:06:47 +03:00
..
lib fix 2019-05-30 12:06:47 +03:00
.npmignore fix 2019-05-30 12:06:47 +03:00
.travis.yml fix 2019-05-30 12:06:47 +03:00
LICENSE fix 2019-05-30 12:06:47 +03:00
package.json fix 2019-05-30 12:06:47 +03:00
README.md fix 2019-05-30 12:06:47 +03:00

getpass

Get a password from the terminal. Sounds simple? Sounds like the readline module should be able to do it? NOPE.

Install and use it

npm install --save getpass
const mod_getpass = require('getpass');

API

mod_getpass.getPass([options, ]callback)

Gets a password from the terminal. If available, this uses /dev/tty to avoid interfering with any data being piped in or out of stdio.

This function prints a prompt (by default Password:) and then accepts input without echoing.

Parameters:

  • options, an Object, with properties:
    • prompt, an optional String
  • callback, a Func(error, password), with arguments:
    • error, either null (no error) or an Error instance
    • password, a String