Getting Started with Streams
Learn about base classes that make up streams in Node.js.
We'll cover the following...
We’ve learned why streams are so powerful, but also that they’re everywhere in Node.js, starting from its core modules. For example, we’ve seen that the fs
module has createReadStream()
for reading from a file and createWriteStream()
for writing to a file, the HTTP request
and response
objects are essentially streams, the zlib
module ...