I always think that optimization is as important as the feature itself. I saw developers ignoring this stage of development and ending up rewriting the whole code. We should give equal importance to optimization as we give it to the feature. Node.JS is best suited for data-intensive applications due to its lightweight IO operations. What […]
Demystifying complex messaging applications using WebSocket!
Have you ever tried to create chat applications? Whenever you want bidirectional communication(server to client and client to server), WebSocket is the new-age solution. But setting up WebSocket in an efficient way is still a key. You may find various articles over this which makes set-up easy, but I think it is inefficient and also […]
5 Best online Code Editors in 2021
2020 was a tough year for all of us, as people started working remotely from home it became hard for recruiters to conduct machine tests and evaluate the candidates. So in this scenario, Online Code Editors plays a very crucial role as it allows you to share your code snippet or whole project anywhere in […]
Server-side pagination in Angular 11
Adding pagination in Angular app can be tricky because the moment you start searching for pagination you will find a lot of pagination libraries. Using ready-made libraries can be a good option in simple applications but not in complex apps. Customisation is very limited in ready-made libraries so in such cases we should prefer to […]