This is my blog for different Coding challenges.
Static file server using streams
Author: Guntars Simanskis
Published: May 04, 2020
Introduction In my previous post I gave overview picture about streams, and my library https://github.com/gunins/functional. To continue streams topic with some real world example, let's create static file server using streams. Before start need to…
Nodejs Streams make it simple
Author: Guntars Simanskis
Published: May 03, 2020
Streams Overview. For a while Nodejs streams are available in API, and have reputation for being hard to work, and even harder to understand. I think that's no longer the case. Streams are collections of data, and can be anything (Buffer, strings…