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

Boosting React.js Development Productivity With Google Code Assist

Published: April 23, 2026 12:00

If you’ve built anything serious with React.js, you know the feeling: you start with a simple component, and before long, you’re juggling state, hooks, props, tests, lint rules, and yet another refactor. While React makes UI development powerful and…

Why Angular Performance Problems Are Often Backend Problems

Published: April 17, 2026 20:00

Angular developers often get the blame when an app feels slow. We instinctively reach for frontend fixes optimizing components, change detection, bundle sizes, and so on. However, a significant portion of perceived Angular slowness comes not from the…

Faster Releases With DevOps: Java Microservices and Angular UI in CI/CD

Published: April 14, 2026 13:00

In modern DevOps workflows, automating the build-test-deploy cycle is key to accelerating releases for both Java-based microservices and an Angular front end. Tools like Jenkins can detect changes to source code and run pipelines that compile code, execute…

How We Reduced LCP by 75% in a Production React App

Published: April 8, 2026 13:00

We recently launched a brand new customer-facing React application when we started receiving customer complaints. Pages were loading slowly and users were frustrated. Customers were churning. As we dug into our internal metrics, it became clear that things…

Reduce Frontend Complexity in ASP.NET Razor Pages Using HTMX

Published: April 6, 2026 18:00

Modern web development often defaults to heavy client-side frameworks (React/Angular) for CRUD applications, introducing significant architectural overhead and “dependency hell.” By integrating HTMX with ASP.NET Razor Pages, we shifted DOM rendering back…

Integrating OpenID Connect (OIDC) Authentication in Angular and React

Published: April 6, 2026 14:00

OpenID Connect (OIDC) is an identity layer on top of OAuth 2.0. If you’ve used “Sign in with Google/Microsoft/Okta/Auth0”, you’ve already used OIDC. In modern single-page apps (SPAs), the best practice is: Authorization Code Flow + PKCE Store tokens in…

Swift: Master of Decoding Messy JSON

Published: March 25, 2026 12:00

I recently came across an interesting challenge involving JSON decoding in Swift. Like many developers, when faced with a large, complex JSON response, my first instinct was to reach for “quick fix” tools. I wanted to see how online resources, various…

Stranger Things in Java: Enum Types

Published: March 16, 2026 13:00

This article is part of the series “Stranger things in Java,” dedicated to language deep dives that will help us master even the strangest scenarios that can arise when we program. All articles are inspired by content from the book “Java for Aliens” (in…

Beyond the Chatbot: Engineering a Real-World GitHub Auditor in TypeScript

Published: March 13, 2026 18:54

AI agents have taken the world by storm and are making positive gains in all domains such as healthcare, marketing, software development, and more. The chief reason for their prominence lies in being able to automate routine tasks with intelligence. For…

Building a Unified API Documentation Portal with React, Redoc, and Automatic RAML-to-OpenAPI Conversion

Published: March 11, 2026 13:00

In today’s microservices-driven world (even with the evolution of AI), organizations often maintain dozens or even hundreds of APIs that are critical to building many software applications. These APIs may use different specification formats: some teams…