#nodehttp

[ follow ]
#javascript
fromCSS-Tricks
2 days ago
Node JS

A Well-Designed JavaScript Module System is Your First Architecture Decision | CSS-Tricks

Node JS
fromFrontendmasters
2 weeks ago

What To Know in JavaScript (2026 Edition)

JavaScript's ECMAScript 2025 introduces new iterator methods and improved set functionalities, enhancing performance and usability for developers.
fromInfoQ
4 weeks ago
Node JS

State of JavaScript 2025: Survey Reveals a Maturing Ecosystem with TypeScript Cementing Dominance

JavaScript
fromInfoWorld
2 months ago

Using JavaScript's built-in objects

JavaScript provides essential built-in objects like Object and JSON that supply core prototype methods, cloning, and JSON serialization/parsing across browser and server environments.
Web development
fromInfoWorld
2 months ago

5 ways to use JavaScript promises

Promises provide a simple, standardized mechanism to handle asynchronous operations in JavaScript by using resolve and reject to deliver results or errors.
Node JS
fromCSS-Tricks
2 days ago

A Well-Designed JavaScript Module System is Your First Architecture Decision | CSS-Tricks

JavaScript modules enable private scopes and controlled global access, essential for managing large programs and avoiding conflicts.
Node JS
fromFrontendmasters
2 weeks ago

What To Know in JavaScript (2026 Edition)

JavaScript's ECMAScript 2025 introduces new iterator methods and improved set functionalities, enhancing performance and usability for developers.
Node JS
fromInfoQ
4 weeks ago

State of JavaScript 2025: Survey Reveals a Maturing Ecosystem with TypeScript Cementing Dominance

TypeScript continues to dominate the JavaScript ecosystem, with 40% of developers using it exclusively, while Vite surpasses Webpack in satisfaction.
Web development
fromTreehouse Blog
4 days ago

The Difference Between Front End, Back End, and Full Stack Development

Front-end, back-end, and full stack are distinct roles in web development, each with unique responsibilities and technologies.
Software development
fromMedium
5 days ago

Async Logging Is Not a Silver Bullet - What Actually Limits Performance

Async logging redistributes costs rather than reducing them, impacting performance in different ways depending on implementation.
#aws-lambda
Node JS
fromInfoQ
3 days ago

Using AWS Lambda Extensions to Run Post-Response Telemetry Flush

Lambda extensions enable post-response work, improving API response times by managing telemetry flushing without impacting request handling.
Node JS
fromInfoQ
3 days ago

Using AWS Lambda Extensions to Run Post-Response Telemetry Flush

Lambda extensions enable post-response work, improving API response times by managing telemetry flushing without impacting request handling.
DevOps
fromInfoWorld
2 weeks ago

What front-end engineers need to know about AWS

Understanding AWS infrastructure improves front-end debugging and UI performance.
#nodejs
Node JS
fromTreehouse Blog
1 week ago

How Node.js Lets JavaScript Run on the Server

Node.js allows JavaScript to run on servers, enabling full stack development with a single language.
Node JS
fromDEV Community
1 month ago

I Scanned 6 Popular Node.js Repos for Undocumented Environment Variables. Here's What I Found.

Many popular Node.js projects lack comprehensive documentation for process.env variables, leading to potential configuration issues.
Node JS
fromInfoWorld
2 months ago

Node.js 22 arrives, backs ECMAScript modules

Node.js 22 adds require() support for synchronous ESM graphs, improved WebSocket client, V8 12.4, larger stream high-water mark, and stable watch mode.
Node JS
fromTreehouse Blog
1 week ago

How Node.js Lets JavaScript Run on the Server

Node.js allows JavaScript to run on servers, enabling full stack development with a single language.
Node JS
fromThe Cyber Express
3 weeks ago

Node.js Fixes CVE-2026-21637 And Critical Flaws Now

Node.js has released security updates addressing multiple vulnerabilities, including critical issues in TLS error handling and HTTP request processing.
Node JS
fromDEV Community
1 month ago

I Scanned 6 Popular Node.js Repos for Undocumented Environment Variables. Here's What I Found.

Many popular Node.js projects lack comprehensive documentation for process.env variables, leading to potential configuration issues.
React
fromInfoQ
2 weeks ago

TanStack Start Introduces Import Protection to Enforce Server and Client Boundaries

TanStack Start introduces import protection to prevent server-only and client-only code from leaking into incorrect bundles.
Web frameworks
fromSubstack
4 weeks ago

Blob Objects in JavaScript: A Practical Guide to Files, Previews, Downloads, and Memory

Blob objects are essential for efficient file handling in frontend development, addressing issues like memory management and performance.
Marketing tech
fromAdExchanger
4 weeks ago

The JavaScript Overload; Whatever, AI Will Handle It | AdExchanger

News publishers are compromising long-term reader retention for short-term ad revenue, leading to bloated web pages and diminished content visibility.
Python
fromDEV Community
1 month ago

I Wrapped My Free npm Package as a Paid REST API - Here's the Architecture

A REST API solves the cross-language accessibility problem that npm packages face, enabling Python, Ruby, PHP developers and no-code tools to access textlens functionality without maintaining multiple codebases.
JavaScript
fromSmashing Magazine
1 month ago

Moving From Moment.js To The JS Temporal API - Smashing Magazine

JavaScript's date/time handling evolved from the limited Date API to Moment.js and now to Temporal, a new standard that addresses previous limitations and provides superior flexibility for modern applications.
Node JS
fromTreehouse Blog
2 weeks ago

How to Build Your First Full Stack App as a Beginner

Building a simple full stack project enhances understanding of front end, back end, and database interactions beyond theoretical knowledge.
DevOps
fromInfoQ
1 month ago

QCon London 2026: Managing Asynchronous APIs at Scale

Event-driven architectures require explicit specifications, governance, and provisioning practices to scale beyond informal ad-hoc approaches, using tools like AsyncAPI to enable discovery, schema consistency, and automated infrastructure deployment.
fromInfoWorld
1 month ago

We mistook event handling for architecture

Events are essential inputs to modern front-end systems. But when we mistake reactions for architecture, complexity quietly multiplies. Over time, many front-end architectures have come to resemble chains of reactions rather than models of structure. The result is systems that are expressive, but increasingly difficult to reason about.
React
Node JS
fromhowtocenterdiv.com
4 weeks ago

Bun vs Node.js Performance: Why Your Event Loop Is the Real Bottleneck

Bun outperforms Node.js in specific benchmarks, but real-world performance issues often stem from database and CPU bottlenecks, not runtime choice.
Web frameworks
fromSubstack
1 month ago

When to Use BFF and Should It Replace API Gateway?

Backend for Frontend (BFF) pattern optimizes APIs for specific client needs, reducing frontend complexity and enabling faster team iteration across multiple platforms.
Vue
fromInfoQ
1 month ago

Vue Router 5: File-Based Routing Into Core with No Breaking Changes

Vue Router 5.0 integrates unplugin-vue-router into core with no breaking changes, adding file-based routing, data loaders, and improved developer tooling.
fromMedium
2 months ago

Fire-and-Forget REST APIs: A TDD Journey.

The request for its API val request = Request[IO](Method.POST, uri"/jobs")val api = new AsyncJobApi // this will not compile since AsyncJobApi is not defined yet Minimal implementation to make it green: class AsyncJobApi Red test: The API should return a 202 Accepted response: "POST /jobs returns Accepted" in { val request = Request[IO](Method.POST, uri"/jobs") val api = new AsyncJobApi api.routes.orNotFound.run(request).asserting : response => response.status shouldBe Status.Accepted} Make it green: class AsyncJobApi { val routes: HttpRoutes[IO] = HttpRoutes.of[IO] : case req @ POST -> Root / "jobs" => Accepted()} 5.2 Add headers (Trivial Implementation) Red test: add X-Total-Count and Location headers with job ID (only the assertion is shown)
Scala
fromThe NodeSource Blog - Node.js Tutorials, Guides, and Updates
5 months ago

Express.js 6 and Beyond: Modernizing the Most Popular Node.js Framework

Two years ago, the Express team initiated a complete revamp of the project's governance. What was once a largely single-maintainer effort under Doug Wilson evolved into a structured Technical Committee (TC) with multiple active contributors. "Our goal was to evolve Express from a single-maintainer project into a sustainable, community-driven effort - one built on shared responsibility, clear processes, and long-term vision," Ulises explained.
Web frameworks
fromMedium
1 year ago

Modern Web Architectures: Composability with Harmony

Over the past decade, software development has undergone a massive transformation due to continuous innovations in tools, processors and novel architectures. In the past, most applications were monoliths and then shifted to microservices, and now we find ourselves embracing composability - a paradigm that prioritizes modular, reusable, and flexible software design. Instead of writing separate, tightly coupled applications, developers now compose software using reusable business capabilities that can be plugged into multiple projects. This enables greater scalability, maintainability, and collaboration across teams and organizations. At the heart of this movement is Bit Harmony, a framework designed to make composability a first-class citizen in modern web development.
Software development
fromLogRocket Blog
2 months ago

UI patterns for async workflows, background jobs, and data pipelines - LogRocket Blog

This same sense of uncertainty can be triggered in software products. Many digital experiences consist of background tasks, file imports, system updates, and other long-running processes that run quietly and invisibly, leaving users with no indications of progress or feedback. The user initiates an action, like a sync, a publish, or a bulk update, and is responsible for the outcome, while the system does all the work out of sight.
UX design
fromInfoWorld
1 month ago

The right way to architect modern web applications

Modern web applications are no longer just "sites." They are long-lived, highly interactive systems that span multiple runtimes, global content delivery networks, edge caches, background workers, and increasingly complex data pipelines. They are expected to load instantly, remain responsive under poor network conditions, and degrade gracefully when something goes wrong.
Web frameworks
Node JS
fromInfoWorld
1 month ago

Edge.js launched to run Node.js for AI

Edge.js is a WebAssembly-based JavaScript runtime that safely executes Node.js applications with faster startup times by sandboxing workloads through WASIX.
fromThisweekinreact
1 month ago

This Week In React #271: Vinext, RSC, Activity, Async React, Next.js, TanStack | Expo 55, Router, Survey, Enriched, Maestro, Metro, Sparkling, Grab, Brownfield | TC39, Temporal, Navigation, npmx, Bun, Deno, Solid | This Week In React

We've identified, responsibly disclosed, and confirmed 2 critical, 2 high, 2 medium, 1 low security vulnerabilities. Vibe-Hacking Cloudflare's Vibe-Coded Next.js Replacement demonstrates that AI-generated code passing functional tests can still miss security hardening, and automated AI tooling can help find those vulnerabilities.
React
#deno
Web development
fromLogRocket Blog
1 month ago

Anti-libraryism: 10 web APIs that replace modern JavaScript libraries - LogRocket Blog

Major browsers provide native Web APIs that replace many common JavaScript libraries, enabling smaller bundles, improved runtime performance, and reduced dependency maintenance.
Node JS
fromAllthingssmitty
1 month ago

Native JSON modules are finally real - Matt Smith

Import attributes enable native JSON module support in JavaScript, eliminating the need for bundler transforms by allowing explicit type declaration with the `with { type: "json" }` syntax.
Web frameworks
fromLoicpoullain
1 month ago

The future of web frameworks in the age of AI

AI agents now generate 90-95% of production code, requiring frameworks to be AI-understandable with comprehensive documentation and clear examples to remain competitive.
Software development
fromInfoQ
2 months ago

The Ideal Micro-Frontends Platform

Micro-frontends apply microservice principles to the frontend, enabling autonomous teams but requiring solutions beyond runtime component loading due to added complexity.
#apollo-client
Software development
fromInfoQ
2 months ago

One Cache to Rule Them All: Handling Responses and In-Flight Requests with Durable Objects

Treat in-flight work and cached completed responses as two states of the same per-key cache entry to eliminate duplicate computations and reduce thundering-herd effects.
JavaScript
fromLogRocket Blog
2 months ago

A guide to async/await in TypeScript - LogRocket Blog

TypeScript supports asynchronous programming through promises, async/await, and modern patterns like for await...of, AbortController, and Promise.all for concurrency and cancellation.
#react
Software development
fromGitHub
2 months ago

GitHub - Hyperwindmill/morphql: Transform data with queries

MorphQL compiles declarative transformation queries into optimized, isomorphic, type-safe JavaScript functions for fast, centralized, format-agnostic data transformations.
Web development
fromInfoQ
2 months ago

Cloudflare Launches Vertical Microfrontend Template for Path-Based Edge Routing

Vertical Microfrontends map independent Cloudflare Workers to URL paths, enabling team-owned vertical stacks with low-latency edge routing and SPA-like transitions.
fromInfoQ
2 months ago

Astro Announces Version 6 Beta with Redesigned Development Server and First-Class Cloudflare Workers

The most complete example of what the new development server makes possible is support for Cloudflare Workers. With Astro 6 Beta, astro dev can now run applications using workerd, Cloudflare's open-source JavaScript runtime, which is the same runtime that powers Cloudflare Workers in production. This means developers can now develop directly against real platform APIs rather than simulations or polyfills.
Web frameworks
Software development
fromInfoWorld
2 months ago

Vercel revamps AI-powered v0 development platform

Vercel's v0 platform rebuilt to enable secure, Git-integrated, production-ready vibe coding for enterprise apps and agent workflows.
React
fromMedium
3 months ago

Embedding Laminar Components Inside React: A Scala.js Integration Guide

Mount a React root inside a Laminar element, store the ReactRoot for cleanup on unmount, and use Airstream-driven props to keep state outside React hooks.
Web development
fromTalkpython
2 months ago

Fly inside FastAPI Cloud

FastAPI Cloud aims to make deploying FastAPI apps as simple as one command, offering a Pythonic cloud and strengthening the open-source FastAPI ecosystem.
Web frameworks
fromTheregister
1 month ago

Cloudflare vibe codes 94% of Next.js API 'in one week'

A Cloudflare engineer used Claude AI to implement 94% of the Next.js API with Vite as an alternative to Turbopack, spending $1,100 on tokens to address deployment challenges across platforms.
Software development
fromInfoWorld
1 month ago

Abandoned project linking Java, JavaScript makes a comeback

The Detroit project revives native JavaScript and Python script engines for the JVM using Chrome V8 and CPython, with plans to become an official OpenJDK project while leveraging the Foreign Function & Memory API.
Node JS
fromInfoWorld
1 month ago

Why local-first matters for JavaScript

JavaScript innovation accelerates through local-first SQL datastores, universal isomorphic JavaScript via WinterTC, reactive signals adoption, NPM alternatives, Java-JavaScript bridges, and Deno's resurgence.
fromSitePoint Forums | Web Development & Design Community
2 months ago

What's the most impactful first step to improve website speed when starting from scratch?

When building or optimizing a website from scratch, performance can easily be overlooked until problems start showing up-slow load times, poor user experience, and lower search rankings. There are many ways to improve website speed, such as image optimization, code minification, caching, choosing better hosting, or using a CDN. For developers and site owners starting fresh, it's often unclear which step delivers the biggest impact
Web development
Web development
fromInfoQ
2 months ago

WASM Components are a FaaS' Best Friend

Wasm components enhance FaaS runtimes by enabling modular, efficient, portable, and resource-aware function execution, simplifying building FaaS systems with wasmCloud.
Node JS
fromInfoWorld
2 months ago

Bun 1.1 JavaScript toolkit backs Windows 10

Bun 1.1 adds Windows 10 support, improves Node.js compatibility, boosts performance, stabilizes WebSocket, and integrates SQLite and developer tooling.
[ Load more ]