PinnedGolang and Cron Jobs: Simplify Your Task SchedulingWhat are cron jobs? Cron jobs also known as time based jobs , are automated processes that perform a certain task at a predefined time interval.Cron jobs are handled by “cron daemon” called crond, which handles the execution of these tasks. Working o...Jan 12, 2025·5 min read·599
Diving into Node.js Streams: A Beginner's GuideWhat are Node.JS Streams? Processing large datasets can be a time taking and a resource consuming task and can make the application slow if done by the traditional method of loading the entire dataset at once in the memory. Streams in NodeJS basica...Jul 21, 2024·4 min read·112
Creating a basic CRUD API in NestJSI have been exploring NestJS and in order to understand the concepts a little better and get hands-on practice I decided to create a basic API consisting of all the CRUD operations , however it isn't connected to a database , the data is stored , fet...Apr 20, 2024·6 min read·66
Intro to NestJSPreface I recently started exploring NestJs , this blog covers the very basics of what i understood. Introduction Nest is a framework for building efficient and scalable NodeJS backend services. It supports JavaScript and TypeScript. It also supports...Apr 3, 2024·4 min read·46
An introduction to DjangoPre-requisite: Basic knowledge of python. Django is a python web framework that enables rapid development of secure and maintainable websites and is open source. When a HTTPS request is received then application works out what is needed based on the ...Feb 25, 2024·7 min read·102
Microservices Architecture : A Beginners GuideWhat exactly is Microservices? Microservice can be defined as smallest unit of service that accepts incoming requests in order to perform some action. It can either be a backend server or a function that is up 24*7 or a function that is invoked every...Feb 14, 2024·3 min read·42
Getting started with creating basic servers using Node.js and ExpressIn the following article, we will take a look at how to create a basic back-end server using Node.js and Server. What is a Server? Simply put a server is software/hardware at the back end that provides the front-end user/client with a response when f...Jan 15, 2024·3 min read·7