Category: Javascript

  • Understanding Virtual Destinations in ActiveMQ with an Example

    Understanding Virtual Destinations in ActiveMQ with an Example

    Virtual Destinations allow us to create logical destinations that map onto one or more physical destinations. Virtual Destinations are logical destinations, a combination of Queues or Topics that map onto one or more physical destinations. It provides loosely coupled messaging configurations and especially helps when an application is running on multiple instances. In this article,…

  • Iniz: Makes ReactJS actually reactive

    Iniz: Makes ReactJS actually reactive

    Iniz is a state library that brings reactivity to ReactJS. Motivation ReactJS is a view library that uses “Push” strategy to detect changes and apply to actual DOM. For developers to “push” state through components, different patterns such as HOC, render-props, Context are introduced. These top-down approaches all have different drawbacks, such as extra re-renders…