如何从Node.js中的命令行读取输入
本文翻译自How to read input from the command line in Node.js
readline内置模块
您是否正在使用Node.js中开发一个小的CLI工具,并希望能够提示用户从命令行输入输入? Node.js正是为此目的提供了readline模块。 它提供了一个接口,用于从可读流(例如process.stdin
)中一次读取一行数据。
这是一个简单的示例,提示用户输入其姓名和国籍,然后在控制台上打印这些详细信息:
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
// ask user for the anme input
rl.question(`What's your name? `, (name) => {
// ask for nationality
rl.question(`What are you from? `, (country) => {
// log user details
console.log(`${name} is from ${country}`);
// close the stream
rl.close();
});
});
在上面的示例中,readline.createInterface()
方法用于通过定义可读和可写流来创建readline的实例。
rl.question()
方法显示查询(问题),并等待用户输入答案。 输入数据可用后,它将调用回调方法,并将用户输入作为第一个参数。
最后,我们在最终的回调中调用rl.close()
方法以关闭readline
接口。 您还可以侦听在关闭流时调用的close
事件。 进行一些后期提问可能会很有用:
// listen for close event
rl.on('close', () => {
console.log("Goodbye 👋");
// exit the process
process.exit(0);
});
查看readline
文档以了解有关所有可用方法和事件的更多信息。
第三方模块-prompt
readline
模块是一个低级Node.js软件包,对于复杂的用例,您可能会认为它太复杂了。 如果要使用更高级别的界面来处理用户输入,只需使用Node Package Manager(NPM)中的prompt
模块。 您可以通过执行以下命令将其添加到您的项目中:
$ npm install prompt --save
如果使用yarn
作为包管理工具,可以执行如下命令添加prompt
模块:
$ yarn add prompt --dev
与readline模块相比,使用
prompt` 相对容易。 您无需显式配置可读和可写流。
让我们使用提示模块重写以上示例:
const prompt = require('prompt');
// start the prompt
prompt.start();
// ask user for the input
prompt.get(['name', 'country'], (err, result) => {
if (err) {
throw err;
}
// print user details
console.log(`${result.name} is from ${result.country}`);
});
处理密码
提示模块可以更轻松地安全地要求用户输入密码。 它将屏蔽输入,而不显示密码的实际字符:
const prompt = require('prompt');
// start the prompt
prompt.start();
// define properties schema
var schema = {
properties: {
name: {
pattern: /^[a-zA-Z\s\-]+$/,
message: 'Name must be only letters, spaces, or dashes',
required: true
},
password: {
hidden: true
}
}
};
// ask user for the input
prompt.get(schema, (err, result) => {
if (err) {
throw err;
}
// print user credentials
console.log(`${result.name} / ${result.password}`);
});
注意上例中的pattern属性。 它确保在移至下一个属性输入之前,正确验证了我们从用户那里收到的
name`属性输入。
向对象添加属性
提示模块提供了另一个名为addProperties()
的便捷方法,可通过从命令行添加属性数据来扩展现有对象:
const prompt = require('prompt');
// start the prompt
prompt.start();
// create an object
const user = {
name: 'John Doe',
country: 'USA'
};
// extend `user` object
prompt.addProperties(user, ['email', 'age'], (err) => {
if (err) {
throw err;
}
// print modified object
console.dir(user);
});
现在,如果您运行上述程序,您应该会看到类似于以下内容的输出:
$ node index.js
prompt: email: john.doe@example.com
prompt: age: 23
{ name: 'John Doe',
country: 'USA',
email: 'john.doe@example.com',
age: '23' }
如上所示,prompt
是高度可定制的。 请查阅官方文档以获取更多信息。 如果您打算在Node.js中构建可靠的CLI工具,则prompt
可能是一个很好的选择。
喜欢这篇文章吗? 在Twitter和LinkedIn上关注我。 您也可以订阅RSS Feed。
其他资料
- How to read input from the command line in Node.js
- nodejs的readline模块
-
nodejs命令行提示第三方库-prompt
A beautiful command-line prompt for node.js - How to read and write JSON files in Node.js
- Monitoring Your Node.js App with Scout APM
- How to encrypt and decrypt data in Node.js
- How to edit an XML file with Node.js