A collection of common interactive command line user interfaces.
文档:
https://www.npmjs.com/package/inquirer
https://github.com/SBoudrias/Inquirer.js
安装
npm i inquirer
代码示例
import inquirer from "inquirer"; (async () => { let input = await inquirer.prompt([ { type: "list", name: "type", choices: ["money", "working", "exit"], message: "please choose doing", suffix: ":", }, ]); console.log(input); // { type: 'working' } })();