Socket.io with Node.js

Socket.io is an open-source JavaScript framework which is available as a Node package. It is based on WebSockets technology. Socket.io enables real-time, bi-directional, event based communication. JSON format is used for data communication Features Reliability: Socket.io is designed to work on every platform whether it is mobile or desktop. Speed: It is fast. Simple API: … Read more

Cypress – Fast, easy and reliable testing for anything that runs in a browser.

The web has evolved. Finally, testing has too. They really meant it. I was looking for a simple, easy to use and initiative end-to-end testing framework for one of our web application. I tried out cypress for the first time and found myself productive within about 10 mins. Before we go deep into the details … Read more

JavaScript Module System

Separate and Abstract code in its own scope, making it accessible and included again! That’s the thing which JavaScript module systems help us to achieve. JavaScript applications tend to grow fast and without any kind of structure in-place, it would be very hard to keep a cleaner code-base. Traditionally different techniques like IIFE, Revealing Module … Read more