readStream.isRaw屬性是tty模塊中ReadStream類的內置應用程序編程接口,用於檢查當前是否將讀取流對象配置為作為原始設備運行。
用法:
const status = ReadStream.isRaw;
返回值:當且僅當當前將讀取流對象配置為作為原始設備運行時,此屬性才返回true。
範例1: 文件名:index.js
// Node.js program to demonstrate the
// readStream.isRaw property
// Importing dgram module
var dgram = require('dgram');
// Creating and initializing client
// and server socket
var client = dgram.createSocket("udp4");
var server = dgram.createSocket("udp4");
// Catching the message event
server.on("message", function (msg) {
// Creating and initializing a
// ReadStream object
let ReadStream = process.stdin;
// Checking if it is configured or
// not by using isRaw() method
const status = ReadStream.isRaw;
// Displaying the result
if (status) {
process.stdout.write(msg
+ "configured" + "\n");
} else {
process.stdout.write(msg
+ "not configured" + "\n");
}
// Exiting process
process.exit();
})
// Binding server with port
.bind(1234, () => {
});
// Client sending message to server
client.send("It is ", 0, 7, 1234, "localhost");
輸出:
It is not configured
範例2: 文件名:index.js
// Node.js program to demonstrate the
// readStream.isRaw property
// Creating and initializing a
// ReadStream object
let ReadStream = process.stdin;
// Setting the read stream Raw mode
// by using setRawMode() method
ReadStream.setRawMode(true);
// Checking if it is configured or not
// by using isRaw() method
const status = ReadStream.isRaw;
// Displaying the result
if(status) {
console.log("It is configured");
} else {
console.log("it is not configured");
}
使用以下命令運行index.js文件:
node index.js
輸出:
It is configured
參考:https://nodejs.org/dist/latest-v12.x/docs/api/tty.html#tty_readstream_israw
相關用法
- Node.js GM charcoal()用法及代碼示例
- Node.js GM blur()用法及代碼示例
- Node.js GM sharpen()用法及代碼示例
- Node.js GM drawLine()用法及代碼示例
- Node.js GM drawArc()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM drawBezier()用法及代碼示例
- Node.js GM drawCircle()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js readStream.isRaw Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。