Tagged articles
17 articles
Page 1 of 1
JavaScript
JavaScript
Oct 22, 2025 · Frontend Development

Simplify CORS with Fetch API: One‑Line Solutions and Future Web Policies

This article explains the fundamentals of CORS, compares traditional workarounds, and demonstrates how modern Fetch API options, import assertions, and emerging web policies like CORP, COOP, and COEP provide simpler, more secure cross‑origin solutions for frontend developers.

CORSWeb Securityfetch API
0 likes · 4 min read
Simplify CORS with Fetch API: One‑Line Solutions and Future Web Policies
JavaScript
JavaScript
Sep 13, 2025 · Frontend Development

How to Solve CORS Issues Easily with Fetch API and Modern JS Features

This article explains the fundamentals of CORS, reviews traditional workarounds, and demonstrates how the Fetch API, import assertions, and emerging web policies provide simpler, more secure solutions for cross‑origin requests in modern frontend development.

CORSJavaScriptWeb Security
0 likes · 5 min read
How to Solve CORS Issues Easily with Fetch API and Modern JS Features
Code Mala Tang
Code Mala Tang
Jul 1, 2025 · Backend Development

2025 Node.js Best Practices: ES Modules, Native fetch, Vitest, Bun & More

Discover the essential 2025 Node.js development techniques—including default ES modules, built-in fetch API, modern testing with Vitest, Bun compatibility, mandatory TypeScript, environment management with dotenv, zero-config tools, and robust process handling with PM2—to boost performance, maintainability, and developer productivity.

BunES ModulesTypeScript
0 likes · 10 min read
2025 Node.js Best Practices: ES Modules, Native fetch, Vitest, Bun & More
JavaScript
JavaScript
May 9, 2025 · Frontend Development

Why Fetch API Beats Ajax: Simplify Your Web Requests Today

This article compares the traditional XMLHttpRequest‑based Ajax approach with the modern fetch API, highlighting fetch's Promise‑based syntax, streamlined configuration, flexible response handling, abort capabilities, and important considerations for cookies, error handling, and timeouts.

HTTP requestsJavaScriptPromise
0 likes · 5 min read
Why Fetch API Beats Ajax: Simplify Your Web Requests Today
JavaScript
JavaScript
Mar 12, 2025 · Frontend Development

Why Fetch API Is Replacing Ajax: 5 Powerful Advantages for Modern Frontend

The article explains how the Fetch API, with its Promise-based syntax, robust request/response abstractions, fine-grained control, abort capabilities, and improved error handling, offers a cleaner, more flexible alternative to traditional Ajax for frontend developers.

AbortControllerAjax replacementPromise
0 likes · 3 min read
Why Fetch API Is Replacing Ajax: 5 Powerful Advantages for Modern Frontend
JavaScript
JavaScript
Mar 4, 2025 · Frontend Development

Simplify CORS in Frontend: One‑Line Fetch API Fix & New Import Assertions

This article explains the fundamentals of CORS, reviews traditional mitigation methods, and demonstrates how modern Fetch API options, import assertions, and emerging web standards provide concise, secure ways to handle cross‑origin requests in frontend development.

CORSJavaScriptWeb Security
0 likes · 5 min read
Simplify CORS in Frontend: One‑Line Fetch API Fix & New Import Assertions
Alibaba Cloud Developer
Alibaba Cloud Developer
Nov 15, 2024 · Frontend Development

How to Build Real‑Time LLM Streaming in the Browser with Fetch

This article explains the mechanism of HTTP API streaming for large language models and shows step‑by‑step how front‑end developers can use the Fetch API, readable streams, and incremental UI updates to deliver real‑time, progressive results while handling errors and connection interruptions.

Front-endHTTP streamingJavaScript
0 likes · 9 min read
How to Build Real‑Time LLM Streaming in the Browser with Fetch
Node Underground
Node Underground
Feb 5, 2022 · Backend Development

Node.js 17.5 Brings Built‑in Fetch API: What Developers Need to Know

Node.js v17.5 introduces experimental support for the familiar fetch API—originally a browser‑side HTTP client—by leveraging the Undici library, allowing developers to use a lightweight, standards‑compliant request method without external modules, though it still requires the --experimental-fetch flag to activate.

HTTPNode.jsUndici
0 likes · 2 min read
Node.js 17.5 Brings Built‑in Fetch API: What Developers Need to Know
Aotu Lab
Aotu Lab
Aug 26, 2021 · Frontend Development

What’s New in Vue 3.2 and How It Boosts Your Frontend Projects

The article reviews Vue 3.2’s new features and performance gains, explains monorepo best practices for large codebases, shares open‑source community strategies from TiDB, provides a detailed Fetch API tutorial, and outlines a beginner-friendly learning path for Webpack 5, offering practical guidance for modern frontend development.

MonorepoVuefetch API
0 likes · 7 min read
What’s New in Vue 3.2 and How It Boosts Your Frontend Projects
MaGe Linux Operations
MaGe Linux Operations
Apr 25, 2021 · Backend Development

How to Use AJAX with Django: GET & POST Requests Made Easy

This tutorial explains how to integrate AJAX fetch calls with Django views for both GET and POST requests, covering header configuration, CSRF handling, JSON data exchange, and the updated method for detecting AJAX requests in Django 3.1 and later.

CSRFDjangoJSON
0 likes · 11 min read
How to Use AJAX with Django: GET & POST Requests Made Easy
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
Feb 6, 2018 · Frontend Development

Why Switch to Fetch API? A Frontend Guide to Modern AJAX

This article compares the traditional XMLHttpRequest‑based AJAX approach with the modern Fetch API, highlighting its Promise‑based design, cleaner syntax, better compatibility strategies, common pitfalls, and practical usage tips for frontend developers.

JavaScriptPromiseajax
0 likes · 4 min read
Why Switch to Fetch API? A Frontend Guide to Modern AJAX
Efficient Ops
Efficient Ops
Feb 28, 2017 · Frontend Development

Boost Browser Data Handling: RxJS-Wrapped Fetch API for Smart Caching & Updates

This article examines the limitations of plain Fetch API for caching and real‑time updates in complex web apps, then demonstrates how wrapping Fetch with RxJS creates lazy‑loaded caches, reactive update notifications, and extensible data streams, while outlining practical implementation details and best practices.

Web Developmentcachingfetch API
0 likes · 5 min read
Boost Browser Data Handling: RxJS-Wrapped Fetch API for Smart Caching & Updates
Hujiang Technology
Hujiang Technology
Dec 2, 2016 · Frontend Development

Best Practices for Using AJAX in React Applications

This article reviews four common approaches—Root Component, Container Component, Redux Async Actions, and Relay—for handling AJAX requests in React, explains when each method is appropriate, and warns against two anti‑patterns, helping developers choose the most suitable strategy for their project's size and architecture.

ReactReduxRelay
0 likes · 8 min read
Best Practices for Using AJAX in React Applications