Chandan kumardeveloperchandan.hashnode.dev·Dec 16, 2024Beginner, Intermediate, and Advanced Node.js Interview QuestionsNode.js has revolutionized web development with its asynchronous, event-driven architecture. This guide covers interview questions for all levels—beginner, intermediate, and advanced—helping candidates prepare for roles that require expertise in Node...Node.js
Samana Butool Mirzafrom-procrastination-to-progress.hashnode.dev·Dec 13, 2024Conquering Node.js HurdlesHey Readers! Out of frontend, database, and backend development, backend has always been the most challenging part for me. This article delves into my early journey in backend development with Node.js, sharing both struggles and insights. You’ll lear...womenwhocode
Jayesh Chauhanexploring-backend-with-jayesh.hashnode.dev·Dec 7, 2024Why Ryan Dahl stop creating Node.js with SpiderMonkey just after 2 days...?Ryan Dahl initially chose SpiderMonkey, Mozilla's JavaScript engine, for the early stages of Node.js development. However, he later switched to Google's V8 engine due to its superior performance and design, which better suited the goals of Node.js. H...Node.js
Chandan kumardeveloperchandan.hashnode.dev·Dec 4, 2024SQL or Node.js: Which is Best for Your App Needs?When it comes to building modern applications, developers often find themselves comparing technologies to decide which fits their needs better. A common debate arises between SQL and Node.js — two technologies that serve fundamentally different purpo...sqlvsnodjs
Maneeshwar Karnekarne.hashnode.dev·Nov 29, 2024What is npx???😭😭😭Ah, npx—the Swiss Army knife of the Node.js world. It’s like that one friend who always seems to have exactly what you need at the exact moment you need it. Included with npm starting from version 5.2.0, npx lets you run Node.js tools like Jest, Moch...Node.js
Sonu Kumarnode-module.hashnode.dev·Nov 25, 2024Node.js Module SystemNode.js has two module systems: CommonJS Modules: ECMAScript Modules (ESM): CommonJS Modules: This is the traditional module system in Node.js. Files with .cjs extension are treated as CommonJS modules. Files with .js extension are treated as ...Node.js
Gedion Danielblog.gediondaniel.dev·Nov 10, 2024How I Deployed My First Full Stack Node.js App on AWS EC2: A Complete GuideHey there! 👋 I remember how overwhelming it felt when I first tried to deploy a full stack application on AWS. After lots of trial and error, I've put together this guide to help you deploy your Node.js app with a React frontend and MySQL database o...EC2 instance
Ankan Sahaaxiodb.hashnode.dev·Nov 2, 2024Introducing AxioDB: A Lightweight, JSON-Based Open-Source DBMS for Modern DevelopmentIntroductionEvery developer needs a fast, flexible, and easy-to-use database for managing JSON data. Existing solutions often have complex setups or require unnecessary overhead for small to medium-scale applications. That’s why I created AxioDB—a JS...46 readsDatabases
mcwachiramcwachira.hashnode.dev·Oct 20, 2024A Deep Dive into Event Emitters in Node.jsIn Node.js, events play a central role in handling asynchronous operations, which are crucial for building efficient and scalable applications. At the core of event-driven architectures is the EventEmitter class, which enables objects to emit events ...Node.js
Vishal Sharmacodreline.hashnode.dev·Oct 9, 2024Let's Dive into Internal Working of Node.jsHave you ever wondered how Node.js can handle thousands of connections at once without breaking a sweat? As a popular choice for building scalable network applications, Node.js has revolutionized the way developers approach server-side programming. A...10 likes·31 readsNode.js