A Practical Guide to Llama Stack for Node Developers
Red Hat’s Node team has been digging deep into LLM coding in recent months, and now shares its discoveries in using Meta’s Llama Stack (not to be confused with their Llama LLM) – it’s a unified set of APIs for working with numerous parts of the modern LLM-powered stack including models, evals, RAG, tool calling, etc. - https://developers.redhat.com/articles/2025/04/02/practical-guide-llama-stack-nodejs-developers
#nodejs
Red Hat’s Node team has been digging deep into LLM coding in recent months, and now shares its discoveries in using Meta’s Llama Stack (not to be confused with their Llama LLM) – it’s a unified set of APIs for working with numerous parts of the modern LLM-powered stack including models, evals, RAG, tool calling, etc. - https://developers.redhat.com/articles/2025/04/02/practical-guide-llama-stack-nodejs-developers
#nodejs
Red Hat Developer
A practical guide to Llama Stack for Node.js developers | Red Hat Developer
Over the last few months, our Node.js team has explored how to leverage large language models (LLMs) using JavaScript, TypeScript, and Node.js. With TypeScript/JavaScript often being the second
How the Node Team Makes Node.js Downloads Reliable
I’m sure most of us rely on just clicking and downloading Node.js (or having a package manager or CI process do it) and it Just Works™. Turns out there’s a lot going on behind the scenes to keep Node.js quick and easy to download and this tells the full story of an operation that serves up over 3 petabytes(!) of traffic a month. - https://nodejs.org/en/blog/announcements/making-nodejs-downloads-reliable
#nodejs
I’m sure most of us rely on just clicking and downloading Node.js (or having a package manager or CI process do it) and it Just Works™. Turns out there’s a lot going on behind the scenes to keep Node.js quick and easy to download and this tells the full story of an operation that serves up over 3 petabytes(!) of traffic a month. - https://nodejs.org/en/blog/announcements/making-nodejs-downloads-reliable
#nodejs
nodejs.org
Node.js — Making Node.js Downloads Reliable
Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
Could JavaScript Have Synchronous Await?
Our favorite JavaScript doctor explores the idea of a synchronous await to erase the divide between sync and async code, explains why it’s enticing, and digs into why performance hits and concurrency headaches make it impractical. - https://2ality.com/2025/03/sync-await.html
#nodejs
Our favorite JavaScript doctor explores the idea of a synchronous await to erase the divide between sync and async code, explains why it’s enticing, and digs into why performance hits and concurrency headaches make it impractical. - https://2ality.com/2025/03/sync-await.html
#nodejs
2Ality
Could JavaScript have synchronous `await`?
In JavaScript, code has color: It is either synchronous or asynchronous. In this blog post, we explore: The problems caused by that How to fix them via synchronous await The two downsides that prevent synchronous await from being practical
How to Easily Reproduce a Flaky Test in Playwright - https://www.charpeni.com/blog/how-to-easily-reproduce-a-flaky-test-in-playwright
#nodejs
#nodejs
Nicolas Charpentier
How to Easily Reproduce a Flaky Test in Playwright | Nicolas Charpentier
Stop playing whack-a-mole with flaky Playwright tests by using CPU throttling to reliably reproduce CI failures on your local machine.
Unstructured-ish DOCX Parsing in Node - https://nguyenhuythanh.com/posts/unstructured-ish-docx-parsing/
#nodejs
#nodejs
Nguyenhuythanh
Unstructured-ish DOCX Parsing in TypeScript/NodeJS
I recently took in a freelancing project, and one particularly interesting task is to convert unstructured-ish DOCX files to structured data, let’s say JSON. Intially, I estimated that it should only take me around 2 days for the implementation. I know what…
NestJS Email System Design: A Professional Guide to SendGrid and Mailgun - https://medium.com/@amitgal45/building-a-scalable-email-architecture-with-nestjs-sendgrid-and-mailgun-part-2-4beae52b46c3
#nodejs
#nodejs
Medium
NestJS Email System Design: A Professional Guide to SendGrid and Mailgun (Part 2)
In Building a Scalable Email Architecture with NestJS, SendGrid and Mailgun (Part 1), we meticulously crafted a SOLID email architecture tailored for NestJS applications. Now, we’ll dive deep into…
Fastify + React – 7x Faster than Next.js?
Node’s Fastify framework has a mature plugin for Vite integration (explained in detail here), including @fastify/react which just hit version 1.0 and makes it easy to create fast, featureful React apps atop Fastify. - https://hire.jonasgalvez.com.br/2025/apr/9/fastify-speed/
#nodejs
Node’s Fastify framework has a mature plugin for Vite integration (explained in detail here), including @fastify/react which just hit version 1.0 and makes it easy to create fast, featureful React apps atop Fastify. - https://hire.jonasgalvez.com.br/2025/apr/9/fastify-speed/
#nodejs
hire.jonasgalvez.com.br
Fastify + React is 7x Faster than Next.js
Comparing Tauri and Electron for Building Desktop Apps
Electron is a natural choice for building JS and HTML-powered cross-platform desktop apps but numerous alternatives have appeared like Neutralinojs and the Rust-based Tauri. This post does a good job of quickly showing how Tauri differs and why you might choose it. - https://gethopp.app/blog/tauri-vs-electron
#nodejs
Electron is a natural choice for building JS and HTML-powered cross-platform desktop apps but numerous alternatives have appeared like Neutralinojs and the Rust-based Tauri. This post does a good job of quickly showing how Tauri differs and why you might choose it. - https://gethopp.app/blog/tauri-vs-electron
#nodejs
gethopp.app
Tauri vs. Electron: performance, bundle size, and the real trade-offs
A breakdown of the choice between Tauri and Electron for cross-platform apps, backed by practical comparisons and benchmark data.
Some Features Every JavaScript Developer Should Know in 2025
A quick list post breezing through a few more modern areas of JavaScript including iterator helpers, structuredClone(), and set operations. - https://waspdev.com/articles/2025-04-06/features-that-every-js-developer-must-know-in-2025
#nodejs
A quick list post breezing through a few more modern areas of JavaScript including iterator helpers, structuredClone(), and set operations. - https://waspdev.com/articles/2025-04-06/features-that-every-js-developer-must-know-in-2025
#nodejs
WaspDev
Some features that every JavaScript developer should know in 2025
The list of JavaScript features that every web developer should know in 2025 in order to efficiently code in JavaScript.
Optimizing Node Performance with V8 GC Optimization
Matteo recently ▶️ gave a talk at dotJS about Node’s memory usage and decided to write it up into a blog post too. Matteo notes that high memory usage doesn’t necessarily mean you have a memory leak, explains how V8’s garbage collector works, and how you can tune things specifically for your own use case. - https://blog.platformatic.dev/optimizing-nodejs-performance-v8-memory-management-and-gc-tuning
#nodejs
Matteo recently ▶️ gave a talk at dotJS about Node’s memory usage and decided to write it up into a blog post too. Matteo notes that high memory usage doesn’t necessarily mean you have a memory leak, explains how V8’s garbage collector works, and how you can tune things specifically for your own use case. - https://blog.platformatic.dev/optimizing-nodejs-performance-v8-memory-management-and-gc-tuning
#nodejs
Platformatic Blog
Boost Node.js with V8 GC Optimization
Optimize Node.js with V8 GC tuning. Adjust Young Generation size for better efficiency in memory-constrained environments
Microsoft Warns About Node.js' Role in Modern Malware
Microsoft’s security team is observing a sharp increase in the use of Node.js to deliver malware and other malicious payloads. This post digs into a couple of examples and what's going on behind the scenes. - https://www.microsoft.com/en-us/security/blog/2025/04/15/threat-actors-misuse-node-js-to-deliver-malware-and-other-malicious-payloads/
#nodejs
Microsoft’s security team is observing a sharp increase in the use of Node.js to deliver malware and other malicious payloads. This post digs into a couple of examples and what's going on behind the scenes. - https://www.microsoft.com/en-us/security/blog/2025/04/15/threat-actors-misuse-node-js-to-deliver-malware-and-other-malicious-payloads/
#nodejs
Microsoft News
Threat actors misuse Node.js to deliver malware and other malicious payloads
Since October 2024, Microsoft Defender Experts has observed and helped multiple customers address campaigns leveraging Node.js to deliver malware and other payloads that ultimately lead to information theft and data exfiltration.
The Best Node.js Observability Tools in 2025
A comparison of seven approaches - https://nodesource.com/blog/nodejs-observability-tools-2025
#nodejs
A comparison of seven approaches - https://nodesource.com/blog/nodejs-observability-tools-2025
#nodejs
The NodeSource Blog - Node.js Tutorials, Guides, and Updates
The Best Node.js Observability Tools in 2025: N|Solid vs New Relic, Datadog, and More
With a range of observability and APM tools available, choosing the right one for your stack and team can be challenging but it can save you hours
The Node.js Test CI Security Incident Explained
The Node.js project recently experienced a critical security incident with its test CI infrastructure. Attackers exploited a flaw in the Jenkins pipeline and this post goes into detail about how it came about and was resolved. - https://nodejs.org/en/blog/vulnerability/march-2025-ci-incident
#nodejs
The Node.js project recently experienced a critical security incident with its test CI infrastructure. Attackers exploited a flaw in the Jenkins pipeline and this post goes into detail about how it came about and was resolved. - https://nodejs.org/en/blog/vulnerability/march-2025-ci-incident
#nodejs
nodejs.org
Node.js — Node.js Test CI Security Incident
Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
Giving V8 a Heads-Up: Faster Startup with Explicit Compile Hints
Not Node specific but a look at a V8 optimization that may become relevant in time. Explicit Compile Hints let you direct V8 to eagerly compile specific files as a way to speed up startup. It ships with Chrome 136. - https://v8.dev/blog/explicit-compile-hints
#nodejs
Not Node specific but a look at a V8 optimization that may become relevant in time. Explicit Compile Hints let you direct V8 to eagerly compile specific files as a way to speed up startup. It ships with Chrome 136. - https://v8.dev/blog/explicit-compile-hints
#nodejs
v8.dev
Giving V8 a Heads-Up: Faster JavaScript Startup with Explicit Compile Hints · V8
Explicit compile hints control which JavaScript files and functions are parsed and compiled eagerly
A Decade of Impact: How Our npm Packages Hit 1 Billion Downloads and Shaped JavaScript
A bold title for sure, but with a neat story behind it. - https://forwardemail.net/en/blog/docs/how-npm-packages-billion-downloads-shaped-javascript-ecosystem
#nodejs
A bold title for sure, but with a neat story behind it. - https://forwardemail.net/en/blog/docs/how-npm-packages-billion-downloads-shaped-javascript-ecosystem
#nodejs
Forward Email
A Decade of Impact: How Our npm Packages Hit 1 Billion Downloads and Shaped JavaScript
In the JavaScript and Node.js world, some packages are essential—downloaded millions of times daily and powering apps worldwide. Behind these tools are developers focused on open source quality. Today, we're showing how our team helps build and maintain npm…
NestJS TypeORM and Multi-Tenancy
Not so different from any other ordinary type of project, multi-tenancy is a software architecture that has been in place for quite a while, and as with any other approach, there are pros and cons. In this article, I plan to walk you through a simple solution I implemented to tackle basic architecture inside the universe of the NestJS framework with TypeORM. - https://medium.com/nestjs-ninja/nestjs-typeorm-and-multi-tenancy-a7f6176e8319
#nodejs
Not so different from any other ordinary type of project, multi-tenancy is a software architecture that has been in place for quite a while, and as with any other approach, there are pros and cons. In this article, I plan to walk you through a simple solution I implemented to tackle basic architecture inside the universe of the NestJS framework with TypeORM. - https://medium.com/nestjs-ninja/nestjs-typeorm-and-multi-tenancy-a7f6176e8319
#nodejs
Medium
NestJS TypeORM and Multi-Tenancy
Not so different from any other ordinary type of project, multi-tenancy is a software architecture that has been in place for quite a…
Real-Time Data Processing with Node.js, TypeScript, and Apache Kafka
Imagine orchestrating a symphony where each instrument… - https://readmedium.com/real-time-data-processing-with-node-js-typescript-and-apache-kafka-24a53f887326
#nodejs
Imagine orchestrating a symphony where each instrument… - https://readmedium.com/real-time-data-processing-with-node-js-typescript-and-apache-kafka-24a53f887326
#nodejs
Readmedium
Real-Time Data Processing with Node.js, TypeScript, and Apache Kafka
Imagine orchestrating a symphony where each instrument plays in perfect harmony, even though they’re scattered across the globe. Sounds…
Koa 3.0: The Expressive HTTP Middleware Framework
Koa first appeared over a decade ago as a ‘next-generation’ Web framework that shared some of the lineage (and team) of Express.js, but leaning on more modern JavaScript features and ideas of the time. While Express has been making a comeback recently, Koa has progressed too and offers a compelling alternative. - https://koajs.com/
#nodejs
Koa first appeared over a decade ago as a ‘next-generation’ Web framework that shared some of the lineage (and team) of Express.js, but leaning on more modern JavaScript features and ideas of the time. While Express has been making a comeback recently, Koa has progressed too and offers a compelling alternative. - https://koajs.com/
#nodejs