nitinsoni90.hashnode.devSelection SortSelection Sort is a sorting method that picks the smallest number from the list and puts it at the front. It keeps doing this until the whole list is sorted. Working of Selection Sort Set the first element as minimum. Compare minimum with the seco...Apr 8, 2025·3 min read
nitinsoni90.hashnode.devBubble SortBubble Sort is a simple sorting algorithm that works by repeatedly comparing two adjacent elements in an array and swapping them if they are in the wrong order. Just like bubbles rise to the top in water, in Bubble Sort the biggest numbers slowly mov...Apr 7, 2025·4 min read
nitinsoni90.hashnode.devBuilding Enterprise-Ready Node.js Application: A Complete GuideIntroduction Node.js is one of the top choices for building modern, fast, and reliable applications. But turning a simple Node.js app into a production-ready solution for large companies is not easy. It needs a strong structure, careful focus on perf...Jan 14, 2025·35 min read
nitinsoni90.hashnode.devHow to setup Nodejs on WindowsNodejs Node.js is an open-source, cross-platform JavaScript runtime environment and library for running web applications outside the client's browser. Ryan Dahl developed it in 2009. Steps to install nodejs Step 1 : Download the Nodejs from the given...Feb 7, 2024·2 min read
nitinsoni90.hashnode.devDatabase Connection with MongoDB and Mongoose(ODM) in NodejsIn this blog, i will tell you that how to do database connection with mongoDB and mongoose(ODM). so, we can perform all our queries easily and can also get to know that how the queries are being performed in nodejs projects. In industrial projects, ...Feb 7, 2024·4 min read