Node.js

Streams in node.js : Readable and Writable

Within Node.js development, streams are used to transfer data including requests to an HTTP server, opening a file, stdin, stdout, stderr etc. Streams can be readable, writable or both. We can connect the readable stream to a writable stream using the pipe method. All streams are instances of event emitters in node.js. We can get...

by Sahil Chitkara
Tag: nodejs streams
27-Jan-2014