Tag: NodeJS

Multiprocessing for NodeJS Web Servers: Dealing with CPU-bound tasks

This article is heavily based on Hussein Nasser’s video on a similar topic. Check it out if you haven’t. Prerequisites: I don’t fancy putting big ‘pre-requisite’ blocks in my text — I find they can do more harm than good, sometimes — but I wo...

Creating a desktop app with JavaScript, HTML, CSS and the old faithful Electron

You are a web developer and were asked for a desktop application? Did you try to learn specific languages to create desktop applications and failed? Did you notice that you are going to stop sleeping and waste quality time with your family and/or pet trying to create desktop applications? ...

Push Notification using RabbitMQ and NodeJS.

So this was one of my internship task where I had to build a push notification system for our application. However after searching various of ways of implementing it from YouTube or any blog, I wasn’t able to find a descent method. Hence, I experimented out with few technologies I came across ...

Clean Architecture in Node.js

Clean Architecture is a software development concept that focuses on creating modular and maintainable code. The architecture allows the developer to create a codebase that is easy to understand, test, and extend. It emphasizes on separating the core business logic of the application from ...