🦜 DZone JavaScript Zone
@dzone.com.javascript@rss-parrot.net
I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline!
Brought to you by the RSS Parrot.
---
Recent posts in JavaScript on DZone.com
Your feed and you don't want it here? Just
e-mail the birb.
Tuples and Records (Part 1): What They Mean for JavaScript Performance and Predictability
https://feeds.dzone.com/link/23564/17129723/tuples-records-javascript-part-1
Published: August 29, 2025 14:00
JavaScript continually evolves to address modern development needs. Its latest updates often reflect trends in functional programming and immutable data handling. Two upcoming additions to the language, Tuples and Records, aim to simplify immutability…
Orchestrating Complex Workflows With XState
https://feeds.dzone.com/link/23564/17126132/xstate-backend-workflows-aws-lambda-ecs
Published: August 25, 2025 12:00
XState is a state orchestration and management library designed for JavaScript and TypeScript applications. It approaches complex logic through an event-driven model that combines state machines, statecharts, and actors. This structure helps developers…
Why Architecture Matters: Structuring Modern Web Apps
https://feeds.dzone.com/link/23564/17123218/modern-web-architecture-react-dotnet-local-government
Published: August 20, 2025 19:00
Modern web applications have become fundamental to delivering seamless and efficient services, especially in the public sector. Local governments face increasing demand to provide responsive, user-friendly, and scalable digital solutions to the public.…
Combine Node.js and WordPress Under One Domain
https://feeds.dzone.com/link/23564/17121746/combining-nodejs-and-wordpress
Published: August 18, 2025 19:00
I have been working on a website that combines a custom Node.js application with a WordPress blog, and I am excited to share my journey. After trying out different hosting configurations, I found a simple way to create a smooth online presence using Nginx…
React Server Components in Next.js 15: A Deep Dive
https://feeds.dzone.com/link/23564/17121504/react-server-components-nextjs-15
Published: August 18, 2025 12:00
React 19.1 and Next.js 15.3.2 have arrived, and React Server Components (RSC) are now officially a stable part of the React ecosystem and the Next.js framework. In this article, we'll dive into what server components are, how they work under the hood, and…
Automating Node.js Deployments With a Custom CI/CD Server
https://feeds.dzone.com/link/23564/17112587/automating-nodejs-deployments-with-a-custom-cicd-server
Published: August 6, 2025 20:00
It is possible that managing and deploying Node.js applications can become a bottleneck as projects grow. Having a properly designed Continuous Integration and Continuous Deployment (CI/CD) pipeline can help reduce the burden of frequent updates, simplify…
Handling Password-Protected PDFs in JavaScript
https://feeds.dzone.com/link/23564/17112357/handling-password-protected-PDF-javascript
Published: August 6, 2025 12:00
PDF is one of the simplest formats for sharing documents. They are portable and can provide basic access control through password protection. In this post, we will discuss one of many ways to unlock and open password-protected PDF documents in JavaScript.…
Deep Observability in Node.js Using OpenTelemetry and Pino
https://feeds.dzone.com/link/23564/17111293/observability-nodejs-opentelemetry-pino
Published: August 4, 2025 16:00
As applications become increasingly distributed, debugging performance issues or locating failures in a Node.js backend can be challenging. Logging by itself usually provides limited context to comprehend how a request navigates through many layers of your…
Building a VS Code-Like Online IDE With Next.js 15, TypeScript, Tailwind CSS, and Goose AI
https://feeds.dzone.com/link/23564/17109058/online-ide-vscode-nextjs-typescript-tailwind-goose-ai
Published: July 31, 2025 17:00
In this tutorial, we'll build an online IDE inspired by Visual Studio Code using modern web technologies: Next.js 15, TypeScript, Tailwind CSS, and Goose AI's API. This IDE will provide real-time code suggestions based on what you type or any inline…
Accessibility Basics for Building Telehealth Platforms With React Code Examples
https://feeds.dzone.com/link/23564/17107867/accessibility-basics-telehealth-platforms-with-react
Published: July 31, 2025 11:00
Let’s cut to the chase: telehealth platforms aren’t just fancy video call apps. They’re lifelines for people with disabilities, chronic illnesses, and mobility challenges. But here’s the kicker — if your platform isn’t accessible, you’re slamming the door…
Immutable Objects Using Record in Java
https://feeds.dzone.com/link/23564/17106686/immutable-objects-using-record-in-java
Published: July 30, 2025 20:00
It is often useful to have objects that, once created, don't change their content. To see a complete description on how to build such class, you can read my previous article "Immutable Objects in Java".
Let’s imagine we want to build a PersonClass with two…