RSS Parrot

BETA

🦜 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.

Site URL: dzone.com/javascript

Feed URL: feeds.dzone.com/javascript

Posts: 11

Followers: 1

Tuples and Records (Part 1): What They Mean for JavaScript Performance and Predictability

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

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…

Combine Node.js and WordPress Under One Domain

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

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…

Handling Password-Protected PDFs in 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

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…

Accessibility Basics for Building Telehealth Platforms With React Code Examples

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

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…