22 Aug 2025
βοΈ We're back after a week off, though I'm starting to think we should have taken two weeks off as it's been quite quiet in JavaScript-land this August! Nevertheless, we still have a full issue for you today, so let's get on to it.. ;-)
__
Peter Cooper, your editor
|
Eliminating JavaScript Cold Starts on AWS Lambda - Porffor is a rapidly developing ahead-of-time JavaScript compiler with a major benefit being extremely quick process launch times (think sub-millisecond). This is certainly more a taste of the future, and something to experiment with, rather than something you want to imminently deploy into production.
Oliver Medhurst
|
jQuery 4.0.0 Release Candidate 1 - Version 4.0 of jQuery has reached the "we think this is ready; now poke it with many sticks" stage. While jQuery is still heavily used, we know it's old-fashioned, but it was so important in the early days of JavaScript Weekly that we have a major soft spot for it!
Timmy Willison
|
Reflections on the React Community - Lee, formerly of Vercel and widely recognized for his influence on Next.js and React, shares candid reflections on the React community, digging into the rise of React Server Components, the tension between commercial and non-commercial priorities, the toll of burnout, and a reminder that, above all, this is still a community of people.
Lee Robinson
|
Using the Custom Highlight API - The CSS Custom Highlight API offers a way to style text ranges on a document using JavaScript to create the ranges, and CSS to style them. And, as of Firefox 140, all major browsers now support it. This could be great for in-page search or even dynamic syntax highlighting.
Chris Coyier
|
Minecraft MCP Server: Let an LLM Take Control of Minecraft - A fun way to play around with MCP servers and LLMs. It uses Mineflayer, a JavaScript API for creating Minecraft bots, behind the scenes. The video in the README is cool, showing how Claude and this server can turn a photo of the White House into an in-world creation.
Yuniko Software
|
-
Waku 0.25 - The minimal React framework introduces the concept of 'slice components' - a new approach to fine-grained component rendering.
-
Retire.js 5.3 - A security scanning tool to detect the use of JavaScript libraries with known vulnerabilities in your project.
-
Ky 1.9 - Simple HTTP client based upon Fetch for browsers, Node & Deno.
-
Repomix 1.3 - Pack an entire repository into a single, LLM-friendly file.
-
ποΈ React Date Picker 8.6 - Simple date picker component. (Demo.)
-
Flatbush 4.5 - Fast static spatial index for 2D points and rectangles.
-
plotly.js 3.1 - Standalone data visualization library.
-
Chai 6.0 - BDD / TDD assertion framework.
|
|

22 Aug 2025 12:00am GMT
20 Aug 2025
Introduction: Problem Definition and Suggested Solution Idea
This article is a a technical article for Java developers that suggest a solution for a major pain point of analyzing very long stack traces searching for meaningful information in a pile of frameworks related stack trace lines. The core idea of the solution is to provide a capability to intelligently filter out irrelevant parts of the stack trace without losing important and meaningful information. The benefits are two-fold:
1. Making stack trace much easier to read and analyze, making it more clear and concise
20 Aug 2025 8:00pm GMT
15 Aug 2025
A JDK Enhancement Proposal (JEP) is a formal process used to propose and document improvements to the Java Development Kit. It ensures that enhancements are thoughtfully planned, reviewed, and integrated to keep the JDK modern, consistent, and sustainable over time. Since its inception, many JEPs have introduced significant language and runtime features that shape the evolution of Java. One such important proposal, JEP 400, introduced in JDK 18 in 2022, standardizes UTF-8 as the default charset, addressing long-standing issues with platform-dependent encoding and improving Java's cross-platform reliability.
Traditionally, Java's I/O API, introduced in JDK 1.1, includes classes like FileReader
and FileWriter
that read and write text files. These classes rely on a Charset
to correctly interpret byte data. When a charset is explicitly passed to the constructor, like in:
15 Aug 2025 7:00pm GMT
12 Aug 2025
In an application meant for concurrent execution need of sharing data (or context) between threads is imperative. The available design choices are to pass the context as method parameter(s) or enable the context to be universally accessible (viz. global variable or equivalent).
While former choice (i.e. context as method argument) is easiest it doesn't scale well. As the application evolves, the context too grows and thus the method parameters. Moreover, the method is required to accept parameters which aren't utilized by itself directly but instead some method deep down the call hierarchy. Thus, overall data flow isn't clean or intuitive. In case the context is mutable any of the callee potentially could corrupt the context. Identifying this rouge behavior is unpleasant at best.
12 Aug 2025 12:00pm GMT
11 Aug 2025
It's here! Almost. jQuery 4.0.0-rc.1 is now available. It's our way of saying, "we think this is ready; now poke it with many sticks". If nothing is found that requires a second release candidate, jQuery 4.0.0 final will follow. Please try out this release and let us know if you encounter any issues. A 4.0 β¦ Continue reading β
11 Aug 2025 5:35pm GMT
08 Aug 2025
βοΈ We're taking next week off, so this will be the last issue until Friday, August 22. Just a little summer vacation.
__
Peter Cooper, your editor
|
Apache ECharts 6.0: The Powerful Data Visualization Library - 12 years on from its first release, ECharts takes another big step forward. Visualization types span from line, bar and pie charts to 3D graphs, calendars and Sankey diagrams. v6 brings an all-new design language, dynamic theme switching, dark mode support, even more chart types, and more. Be sure to enjoy the 100+ demos and the GitHub repo.
Apache Software Foundation
|
βΆ How JavaScript Really Evolves: Inside TC39 with Daniel Ehrenberg - A well-recorded 47 minute in-person conversation with one of the most productive members of the TC39 committee covering not just some of the newest features coming to JavaScript, but also the way TC39 works and how you can get involved and propose ideas and help the language move forward.
The Weekly Dev's Brew
|
How V8's JSON.stringify Got Over 2x Faster - The V8 team has turbo-charged JSON.stringify , giving apps an automatic performance boost for numerous common tasks when using V8 13.8 onwards (such as in Chrome 138). This article unpacks the low-level work behind the speedup.
Patrick Thier (V8)
|
-
eslint-plugin-angular 5.0 - ESLint plugin for AngularJS applications, now with ESLint v9 support.
-
Ghost 6.0 - Node.js-powered indie publishing and blogging platform.
-
Joi 18.0 - Schema description language and data validator.
-
π Fuite 5.0.8 - Tool for finding memory leaks in web apps.
|
-
AwesomeIndex (above) provides a way to search hundreds of 'awesome'-style curated link lists at once. This idea has a lot of potential, as those lists are crammed full of useful resources.
-
r2dec-js is a JavaScript-based decompiler that converts assembly code into 'pseudo-C' for learning purposes.
-
Bali is an attempt at creating a JavaScript lexer, parser, and interpreter in the Nim language.
-
π Do you miss ActionScript 3.0 and Flex? No? This week, I learned Apache is keeping the dream alive with Apache Royale.
-
π€ You probably heard that OpenAI released GPT-5, but their developer-oriented intro to GPT-5 was overshadowed, I think, and it goes into some interesting depth. They dropped two open weight models too.
-
Today I learned that JSON has a logo.
|
We're now off for a week, so will be back on Friday, August 22 - see you then!
|
|

08 Aug 2025 12:00am GMT
05 Aug 2025
BRZ migrated the Austrian Business Service Portal with 2M+ users to Keycloak. The Austrian Business Service Portal (USP) is the central online eGovernment platform for entrepreneurs and businesses. It connects businesses with various Austrian online government services, where businesses can access all digital services and information in one place. The USP was launched in 2010 by the (BRZ, abbreviated from the German name Bundesrechenzentrum). The BRZ is the market-leading eGovernment partner of the Austrian federal administration and is both developing and operating the portal. Authenticating and authorizing 2+ million users for 130+ public services is the most important key feature of the USP which now uses Keycloak, microservices and GitOps under the hood. ! We are now starting to collect all case studies at . If you want to share your case study with the Keycloak community, to sort out the details.
05 Aug 2025 12:00am GMT
01 Aug 2025
The Many JavaScript Runtimes of the Last Decade - A fantastic, well-researched look at the myriad of JavaScript runtimes and engines both past and present, from mainstream picks like Node.js and Bun, to cloud platforms and some more obscure 'honorable mentions'. A perfect way to round out your knowledge of JavaScript's runtime story.
Whatever, Jamie
|
Node.js v22.18 (LTS) Gets Type Stripping by Default - We wouldn't normally feature a minor Node.js LTS release, but this one comes with a big tweak: type stripping/TypeScript support is enabled by default, making node app.ts a reality, much as with Bun or Deno.
Antoine du Hamel
|
π‘ Node v24.5 (Current) has also been released, with node:http(s) now supporting proxies, OpenSSL 3.5, and --experimental-wasm-modules unflagged.
|
Compile Svelte 5 in Your Head - Svelte does things a little differently to most UI frameworks by compiling code to components ahead-of-time, but what is it actually doing at the code level?
Tan Li Hau
|
TanStack DB: The Embedded Client Database for TanStack Query - One for team React! TanStackβ―DB is an embedded clientβside database that uses differential dataflow to power live, relational queries, subβms incremental updates, and optimistic writes. This post is a great pitch, and the first beta is available now.
Kyle Mathews and Sam Willis
|
|

01 Aug 2025 12:00am GMT
13 Jul 2025
These are some of the blogs I follow for high-signal content, real-world lessons, and emerging patterns. 1. The Burning Monk (Yan Cui) - Deep technical guides, real-world insights, and event-driven serverless at its best. π 2. Off-by-none (Jeremy Daly) - Weekly curated newsletter filled with top serverless news, tools, and community updates. π 3. A Cloud Guru Blog - Trusted training content with strong coverage of AWS, certifications, and serverless how-tos. π 4. Serverless.com Blog - Official blog for the Serverless Framework team with tutorials, product updates, and ecosystem insights. π 5. AWS Community Builders Blog - Real-world articles from active AWS contributors and thought leaders. π 6. Serverless Transformation (Aleios) - Strategy-rich serverless insights, especially around event-driven architecture. π 7. AWS Compute Blog - Deep dives into AWS Lambda, Step Functions, and compute services directly from AWS. π 8. AWS Architecture Blog - High-level cloud-native architecture practices and guidance for scalable apps. π 9. Lumigo Blog - Focused on observability, monitoring, and debugging in serverless environments. π 10. Serverless360 Blog - Azure-first serverless content with strong focus on Azure Functions and service management. π 11. Nick Tune's Blog - Sociotechnical thinking and service design strategies for microservices and serverless. π 12. AWS Enterprise Strategy Blog - Executive cloud transformation strategies, ideal for leadership and enterprise architects. π 13. Theodo Blog - Engineering-led content featuring serverless, migration, and rapid product delivery stories. π 14. Serverless First (Paul Swail) - Practical daily tips, guides, and architecture breakdowns from an experienced consultant. π 15. Serverless Land - AWS-curated library of patterns, tutorials, and EDA content for serverless professionals. π 16. Lego Engineers Blog (Sheen Brisals & team) - Real enterprise-scale implementation stories from a global brand. π 17. Serverless Chats Podcast - Interviews with top serverless minds - with full transcripts for every episode. π 18. Serverless Guru Blog - Transformation-focused advice and engineering best practices from a consultancy team. π 19. The Serverless Edge Blog - Cloud strategy, org design, and the "value flywheel effect" in serverless transformation. π 20. InfoQ Serverless - Aggregated industry-wide coverage, articles, and videos on serverless and architecture. π 21. Jeremy Daly's Personal Blog - Detailed architectural posts and in-depth serverless exploration beyond the newsletter. π 22. Lee Gilmore's Blog - Valuable insights on enterprise serverless adoption and scaling strategies. π 23. Ready, Set, Cloud (Allen Helton) - Friendly, digestible blog posts with great diagrams and tutorials. π 24. Sheen Brisals's Blog - Engineering leadership perspectives with an emphasis on EDA and maturity. π 25. Aiden Steele's Blog - Low-level AWS insights with rare gems on Lambda internals and advanced configurations. π 26. Luc van Donkersgoed's Blog - Visual, simple explanations of complex cloud patterns and serverless tips. π 27. Benjamen Pyle's Blog (Binary Heap) - Great technical content on building serverless in Rust. π 28. Ben Kehoe's Blog - Deep strategic thinking on cloud operations, organizational design, and serverless ops. π 29. Alex DeBrie's Blog - Author of The DynamoDB Book, Alex shares thorough serverless data modeling guides. π 30. Last Week in AWS (Corey Quinn) - Hilarious, opinionated, and insightful commentary on all things AWS - including serverless. π 31. AWS Fundamentals Blog - Accessible cloud concepts from community experts. π 32. Vadym Kazulkin on Dev.to - Detailed explorations of Lambda SnapStart and Java serverless.π 33. Cloudonaut Blog (Wittig Brothers) - Production-grade AWS best practices and architectural tips. π Do you know other technical blogs on serverless or cloud? Comment below and share your favorites.
13 Jul 2025 8:59am GMT
19 Mar 2025
17 Jul 2024
Last February, we released the first beta of jQuery 4.0.0. We're now ready to release a second, and we expect a release candidate to come soonβ’. This release comes with a major rewrite to jQuery's testing infrastructure, which removed all deprecated or under-supported dependencies. But the main change that warranted a second beta was a β¦ Continue reading β
17 Jul 2024 2:03pm GMT
17 Apr 2024
jQuery's influence on the web will always be evident. When it was first introduced in 2006, jQuery became a fundamental tool for web developers almost immediately. It simplified JavaScript programming, making it easier to manipulate HTML documents, handle events, perform animations, and much more. Since then, it has played and continues to play a major β¦ Continue reading β
17 Apr 2024 5:00pm GMT