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...DiscussEC2 instance
Anuj Tomarseoguy.hashnode.dev·Oct 8, 2024How to Build a Simple Web Server with Node.jsNode.js is an open-source, cross-platform JavaScript runtime environment allowing developers to build server-side applications outside a browser. It can be used to build mission-critical production applications that perform extremely well. In this pr...Discussnode js
Akritiakriti111.hashnode.dev·Sep 24, 2024Unlocking Asynchronous Power with Node.js and LibuvSynchronous Vs Asynchronous System Synchronous System: In a synchronous system, tasks execute sequentially, potentially blocking the main flow. console.log("synchronous"); let a = 10; let b = 20; function add(x,y){ const res = (a + b); retu...Discuss·10 likesNode.js
Victor Uzoagbavictoru.hashnode.dev·Sep 14, 2024Creating a Headless Web Scraper with Playwright and Node.jsIntroduction Web scraping is an essential tool for gathering data from websites, automating processes, and interacting with dynamic content. By using web scraping, you can extract data such as prices, news, and social media trends, which can be analy...DiscussNode.js
syncfusionsyncfusion-blogs.hashnode.dev·Sep 12, 2024What’s New in Node.js 22?TL;DR: Let's explore the key features of Node.js 22, including ECMAScript modules support and the V8 engine update. This release introduces the Maglev compiler and a built-in WebSocket client for enhanced performance and real-time communication. Impr...Discuss·28 readsNode.js 22
Rishabh Bhattrishabhcodes.hashnode.dev·Sep 11, 2024How URL Shorteners Work & How to Build One with Server-Side Rendering using Express and EJSIntroduction: Have you ever wondered how those tiny URLs work behind the scenes? Whether you're sharing links on social media or simplifying a long link for your users, URL shorteners are super handy. In this blog post, we’ll walk through how URL sho...Discuss·10 likes·83 readsNode.js
Victor Uzoagbavictoru.hashnode.dev·Sep 8, 2024Best Practices for Securing Node.js Applications in ProductionNode.js, a popular runtime for building server-side applications, brings high performance and scalability to web development. However, its flexibility can lead to security vulnerabilities if not properly managed. When deploying Node.js applications i...Discussbest practices
Victor Uzoagbavictoru.hashnode.dev·Aug 30, 2024Profiling Tools and Techniques for Node.js ApplicationsNode.js is a powerful platform for building server-side applications due to its asynchronous, non-blocking architecture. However, as applications scale, performance bottlenecks can arise, leading to increased latency and degraded user experience. Pro...Discussbest practices
Victor Uzoagbavictoru.hashnode.dev·Aug 28, 2024Best Practices for Securing Node.js Applications in ProductionNode.js is a powerful and popular platform for building scalable server-side applications. However, like any other technology, it comes with its own set of security concerns that developers must address to ensure their applications are secure in prod...Discussbest practices
Ijeoma IgboaguforfreeCodeCampfreecodecamp.org·Aug 5, 2024How to Build an Application With Node.jsNode.js it’s a runtime environment that allows you to run JavaScript code on the server side for building server-side applications. It works well for creating fast and scalable applications. In this article, I will use a simple event management app ...DiscussJavaScript