sudheer nunnawiredwhiz.hashnode.dev·Jan 2, 2024Node JS StreamsCoding with Streams Streams are one of the most important components and patterns of Node.js. There is a motto in the community that goes, "stream all the things!", and this alone should be enough to describe the role of streams in Node.js. Dominic T...handing large file
Giver Kdkgiver-kdk.hashnode.dev·Oct 23, 2023PHP: File HandlingFile Opening We can perform CRUD operations in files using PHP which is similar to file handling in C-Program. To perform any read or write operation, we have to open the file first: $fileName = "myFile.txt"; $handler = fopen($fileName, "r"); Here, ...45 readsFile handling