Stream Transform Lab

Medium
9.1% Acceptance

In this lab, we will be using Node.js Stream API to perform simple transformations on an input data stream. Streams are important when working on data manipulation, as they allow you to handle large amounts of data without overwhelming the system memory. The stream.Transform class is an extension of the stream.Duplex class and enables you to implement a transform function to process the input data and generate the output data.

In this lab, you'll be creating a basic transform stream that converts all incoming data to uppercase. You will also write an appropriate evaluation script to test your implementation.

Note: This lab requires a good understanding of the Node.js stream module and the stream.Transform class.