Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
192
rated 0 times [  195] [ 3]  / answers: 1 / hits: 92768  / 11 Years ago, wed, november 20, 2013, 12:00:00

I'm having trouble wrapping my head around the pipe function shown in several Node.js examples for the net module.



var net = require('net');

var server = net.createServer(function (socket) {
socket.write('Echo serverrn');
socket.pipe(socket);
});


Can anyone offer an explanation on how this works and why it's required?


More From » node.js

 Answers
22

The pipe() function reads data from a readable stream as it becomes available and writes it to a destination writable stream.



The example in the documentation is an echo server, which is a server that sends what it receives. The socket object implements both the readable and writable stream interface, so it is therefore writing any data it receives back to the socket.



This is the equivalent of using the pipe() method using event listeners:



var net = require('net');
net.createServer(function (socket) {
socket.write('Echo serverrn');
socket.on('data', function(chunk) {
socket.write(chunk);
});
socket.on('end', socket.end);
});

[#74178] Monday, November 18, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
jaelyn

Total Points: 619
Total Questions: 102
Total Answers: 104

Location: Honduras
Member since Sun, Dec 26, 2021
2 Years ago
;