AAvinashinavinashcodelabs.hashnode.dev·Feb 2, 2022 · 4 min readWhy do we need Streams in Node.js?Streams are sequences of data made available over time. The difference with other types of data like strings or arrays is that streams might not be available all at once, and they don’t have to fit in memory. Many of the built-in modules in Node impl...00
AAvinashinavinashcodelabs.hashnode.dev·Jan 14, 2022 · 4 min readCode splitting with Suspense in ReactBundling Most React apps will have their files/modules bundled using tools like webpack. This bundle can then be included on a webpage to load an entire app at once. Bundling is the process of following imported files and merging them into a single ...00