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: 10

Followers: 1

When TypeScript Types Meet Untrusted AI: Building Type-Safe LLM Pipelines With Runtime Validation

Published: September 11, 2026 18:00

TypeScript can make an LLM integration look safer than it is. A function may promise Promise<Classification> and every branch may compile under strict settings, yet none of those guarantees prove that a model returned a valid Classification. TypeScript…

Replacing JSON With Protobuf in Your Microservice Mesh: A Zero-Downtime Migration Blueprint

Published: September 11, 2026 14:00

When engineering teams build distributed systems, they naturally reach for REST over HTTP/1.1 with JSON payloads. JSON is readable, universally supported, and trivially easy to debug with any browser or proxy tool. For early-stage services handling modest…

Angular Apps Don’t Need Another Chatbot: Building Agentic UI Workflows With TypeScript

Published: September 10, 2026 17:00

A chatbot can explain data, summarize a screen, or answer questions, yet the application still behaves largely as before: business state lives elsewhere, actions remain disconnected from model output, and the interface is reduced to a transcript. Agentic…

How to Test GET API Requests With Playwright TypeScript

Published: September 10, 2026 15:00

Playwright is a widely used open-source test automation framework developed by Microsoft. It allows developers and test automation engineers to reliably automate web applications across multiple browsers and platforms. Playwright supports several popular…

Fetching Information Randomly From JSON Using Node, Nuxt, Express

Published: September 10, 2026 12:00

Nuxt.js is a popular framework for Vue.js, and it is widely used for websites that require server-side rendering. It is similar to the Next.js framework for React.js. In this article, I’m going to share how you can fetch values randomly from a static JSON…

Node.js Microservices Architecture: A Complete Guide

Published: September 2, 2026 15:00

Most teams don't decide to build microservices. They get pushed into it. One app grows for a couple of years. More people push into the same codebase. Then a change to something totally unrelated breaks checkout on a Tuesday. Nobody planned that. That's…

The Code-Volume Delusion: Rethinking Engineering Velocity in the AI Era

Published: August 25, 2026 15:00

Let's be honest about what happens when you give an entire engineering team AI coding assistants. You look at the sprint board, and tickets are moving to "In Review" faster than ever. Your developers are happy. They are writing boilerplate in seconds and…

Text Analysis Without a Backend: Replacing an LLM Call With Intl.Segmenter and 60 Lines of JavaScript

Published: August 24, 2026 18:00

Last spring, I had six small text features to build: flag filler phrases in a draft, score sentence-length variation, format a citation, check a document against a rubric. My first design put all six behind an API route that called a model. It worked in an…

Stop Hand-Rolling Chat UIs: Streaming LLM Tokens Into React Native Without the Jank

Published: August 20, 2026 18:00

A chat screen looks like a weekend project: a list of bubbles and a text input pinned to the bottom. In React Native, it is one of the hardest things to ship well, because it sits on top of the two most hostile surfaces in mobile development: the software…

A Framework-Agnostic Approach to SSR for Microfrontends

Published: August 11, 2026 13:00

On one of our projects, we were building microfrontends, and at some point we wanted to add SSR. The reasons were the usual ones: better first paint, fewer layout shifts, real content for crawlers, less JS to load before something appears on screen.…