Model/packages/字体精简工具/node_modules/getpass
2024-08-28 11:12:05 +08:00
..
lib 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
.npmignore 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
.travis.yml 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
LICENSE 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
package.json 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
README.md 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08: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