Command Palette
Search for a command to run...
Comments
Join the discussionNo comments yet. Be the first to comment.
javascript
Event Bubbling in JavaScript
Event Bubbling is a concept of event propagation in the DOM. when an event occurs inside an HTML element. it gets propagated or bubbles up to its parent and ancestor element in the DOM tree until it gets to the root element. Now let's see this behav...
More from this blog
Kafka: Replications and ISR
In Apache Kafka, the replication factor refers to the number of copies (replicas) of a topic partition that are maintained across the Kafka cluster. ISR stands for In-Sync Replicas. It is the set of all replicas (including the leader replica) that ar...
Event Capturing in JavaScript
Event capturing occurs when a nested element gets clicked. The click event of its parent elements must be triggered before the click of the nested element. Event capturing is not the default behavior of Javascript Events. In vanilla javaScript we ne...
Kafka: Topics, Partition & Consumers
Concepts What is Kafka? Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. What is Topic? K...
Microservice Communication with Kafka
Kafka with Node.js
