Tagged

nodejs

4 notes

28 Apr 2026

I built pipequery, a pipe-based query language for JavaScript — over a weekend

Pipequery - A small, zero-dependency query language for JavaScript and TypeScript that lets you filter, transform, aggregate, and join data using a left-to-right pipe syntax instead of the back-to-front nesting that SQL forces on you

nodejsjavascriptarchitecturewebsockettypescriptdata

12 Apr 2024

Time Series Aggregations

There are numerous methods for combining multiple time series data. Here are some common methods using Typescript

real-timetimeseriesnodejs

10 Nov 2023

Kafka real world use case

Let's consider a real-world use case for Kafka involving a simple e-commerce platform. In this scenario, Kafka is employed to enable communication and data flow between different components of the system.

nodejspythonarchitecturekafka

02 Feb 2023

How to achive parallelism in Node.js

Node.js allows for parallelism by utilizing the asynchronous programming model. This model allows for the execution of multiple tasks at the same time, resulting in faster processing of data

webnodejs