Aryan Singhpixelcrafted.hashnode.dev·Dec 20, 2024Understanding Single Page Applications (SPAs): A Beginner’s OverviewIn today’s fast-paced digital world, websites and applications are expected to be fast, smooth, and interactive. Single Page Applications (SPAs) have emerged as a solution to meet these expectations, offering a seamless user experience. Let’s break d...SPA VS MPA
Darshit Anjariadarshitanjaria.hashnode.dev·Dec 10, 2024Why response.json() Needs await: Simplify Asynchronous JavaScriptWhen working with fetch API in JavaScript, you often encounter the need to use the await keyword when calling response.json(). This can be puzzling to newcomers, as response.json() looks like a simple function call, but it’s actually asynchronous. Le...JavaScript
Shobo Adefowopetaiwoadefowope.hashnode.dev·Nov 20, 2024JavaScript Fetch API in Minutes!Introduction: The Fetch API is a powerful JavaScript tool used to interact with Web APIs. Learn how to make GET, POST, PUT, PATCH, and DELETE requests. This tutorial also covers async/await with Fetch and handling API responses. Video Tutorial ...JavaScript
Shivam Goswamishivamgoswami.hashnode.dev·Nov 13, 2024Asynchronous JavaScript: Promises, Async/Await, and the Fetch APIAs web developers, we often deal with tasks that take significant time to complete, such as fetching data from an API, loading images, or processing user inputs. Handling these tasks asynchronously ensures our applications remain fast and responsive....Road to MERN Stack DevelopmentWeb Development
Evanevanlovescloud.com·Oct 17, 2024Automating Data Collection from Dynamic Websites: My Journey with Puppeteer, API Fetching, and AWS LambdaIntroduction I embarked on this project to deepen my hands-on experience with AWS Lambda and JavaScript. Despite having no prior background in JavaScript, I decided to dive in headfirst because I learn best through practice. I was eager to develop n...jawa.gg
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Oct 10, 2024JavaScript ES6 Features: Promises, Async/Await, and Fetch API ExplainedJavaScript is an essential programming language for creating dynamic and responsive websites. With the advent of ES6 (ECMAScript 2015), JavaScript evolved with several new features that make development more manageable and efficient, especially for h...57 readsaync
Nicole Gathanynicolegathany.hashnode.dev·Oct 7, 2024GraphQL vs. REST APIsToday I was reflecting on an interview I had last year where the interviewer said “At your last company, you used GraphQL. I’m surprised that you didn’t use REST APIs.” If I can be really transparent and vulnerable with you all here, I was caught off...87 readsGraphQL
Graham Boylegreyboyle.hashnode.dev·Oct 2, 2024JavaScript Fetch API: A Complete OverviewAs web applications become more dynamic, efficient server communication is crucial. JavaScript's fetch API provides a powerful and flexible way to handle HTTP requests, allowing developers to interact with APIs and other remote resources. Mastering t...29 likes·146 readsJavaScript
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 2, 2024Local Storage and Session StorageLocal Storage Local storage in JavaScript is a web storage feature that allows websites to store key-value pairs in a web browser, providing a way to persist data across sessions. It is part of the Web Storage API, which includes both localStorage an...1 likeAdvanced JavaScript and DOMlocalstorage
Vitthal Korvanvitthal-korvan.hashnode.dev·Oct 2, 2024Fetch API and AXIOSFetch API The Fetch API is a modern, flexible, and powerful JavaScript interface for making HTTP requests to servers. It is a replacement for XMLHttpRequest (XHR) and offers a simpler, cleaner syntax using promises, allowing developers to handle asyn...1 likeAsynchronous JavaScriptaxios