Есть ли расширение входного потока, чтобы я мог вызывать методы, к которым я привык
Например
stdin.readData(function (err, buffer) { // err if an error event was created, buffer if this is just data, null to both if the end of the stream was reached.
// Added bonuses would be other methods I am used to in Java
// - readLine
// - readFully
// - readStringUtf8
// - readInt, readDouble, readBoolean, etc.
})
Бэкэнд будет прослушивать события data
, end
и error
и автоматически их буферизировать, и они будут доступны только для вызова readData
.