You have reached the beginning of time!

NodeSource Weekly — Sept 1, 2026: New Node.js releases, N|Solid Plugin v1.0.3 & the road to Node.js 26 LTS

👋 Welcome to the September Edition!

This week, we’re looking at how AI agents are moving deeper into developer workflows, what’s happening across the Node.js community, and how NodeSource is bringing runtime diagnostics and security context directly into developer and AI-assisted environments.

Here’s what’s inside:

🤖 AI-Powered Dependency Auditing: See how the N|Solid Plugin + Codex can turn Node.js dependency vulnerabilities into actionable upgrade recommendations using NCM vulnerability intelligence.

🧩 N|Solid DevTools: Bring live Node.js telemetry, CPU profiles, heap snapshots, performance insights, and package security directly into VS Code, Cursor, Windsurf, and compatible editors.

🌎 Community & Events: Catch up on Node.js Interactive 2026, explore the NodeConf EU program, and discover the upcoming virtual JS Days 2026 conference.

🤖 AI Corner: Recommended reads on autonomous coding agents, collaborative agent workflows, and how tools like Cursor, Slack, Codex, and GitLab are pushing AI deeper into the software development lifecycle.

🚀 Node.js Upgrade Program: Learn how organizations running End-of-Life Node.js versions can get free expert guidance to plan and execute their next upgrade.

Happy reading! 🚀


13.png

🟢 Last Week in Node.js

Node.js 24.20.0 (LTS) — More Control, Better Diagnostics

Node.js 24.20.0 “Krypton” landed with several useful additions for production applications and tooling.

Highlights include:

  • 🔐 New permission.drop() API to revoke permissions at runtime
  • 🔎 New --permission-audit flag for auditing permission usage
  • 📦 Package maps support in loaders
  • 🌊 New node:stream/iter implementation
  • 🧪 context.log() and new events in the built-in test runner
  • ⚡ JavaScript Promise Integration (JSPI) enabled for WebAssembly
  • 🔒 Root certificates updated to NSS 3.125
  • 📦 npm updated to 11.19.0

👉 Explore Node.js 24.20.0: https://nodejs.org/en/blog/release/v24.20.0

Node.js 26.8.0 & 26.8.1 (Current) — Crypto, Performance & Developer Experience

Node.js 26.8.0 introduced a broad set of improvements across performance tooling, cryptography, diagnostics, SQLite, and the REPL.

Notable updates include:

  • 🔐 SIV and GCM-SIV encryption modes added to Cipher/Decipher APIs
  • 📊 Statistical hypothesis testing added to performance histograms
  • 🔭 TracingChannel is now stable
  • ⚡ Performance improvements for net.BlockList
  • New close() and Symbol.dispose support for SQLite statements
  • 📦 New ZipEntry, ZipFile, and ZipBuffer APIs
  • ✨ Basic syntax highlighting in the Node.js REPL
  • 🧪 New benchmark analysis tooling

Node.js 26.8.1 followed as an out-of-band release to fix an issue where node --version incorrectly reported an alpha version.

👉 Explore Node.js 26.8.0: https://nodejs.org/en/blog/release/v26.8.0
👉 Explore Node.js 26.8.1: https://nodejs.org/en/blog/release/v26.8.1


14.png

🚀 Featured from NodeSource

🤖 nsolid-plugin v1.0.3 is now available

A new version of the N|Solid Plugin is out, making it easier to work across organizations and improving the experience for AI coding agents connected to N|Solid.

This release includes:

  • 🏢 Organization switching with the new switch-org command and ns-switch-org skill
  • 🔗 Improved MCP URL handling
  • 🧪 Test reliability fixes

The N|Solid Plugin gives AI coding agents access to real Node.js runtime context — including telemetry, CPU profiles, heap snapshots, package security insights, and application benchmarks — so they can investigate issues using production evidence, not just source code.

👉 Install nsolid-plugin v1.0.3
https://npmjs.com/package/nsolid-plugin?activeTab=readme

👉 Using Pi Agent?
https://npmjs.com/package/nsolid-pi-plugin

👉 Explore N|Solid DevTools
https://nodesource.com/products/nsolid/devtools

🟢 N|Solid is getting ready for Node.js 26 LTS

N|Solid is already running on top of Node.js 26.7.0, with the full test suite passing.

That means the groundwork is in place for N|Solid to support Node.js 26 as it moves toward LTS — helping teams adopt the next LTS line while keeping the production diagnostics, security intelligence, and runtime visibility they rely on.

👉 Learn more about N|Solid
https://nodesource.com/products/nsolid

👉 Explore N|Solid DevTools
https://nodesource.com/products/nsolid/devtools


15.png

🌎 Community & Events

🇮🇹 NodeConf EU 2026 is coming this month

NodeConf EU returns September 29–30 in Bologna, Italy, bringing together the Node.js community for two days of talks focused on runtimes, performance, tooling, observability, and production systems.

This year’s program includes sessions on:

  • The new Node.js release model and what changes with Node.js 27
  • Node.js runtime interoperability
  • Performance optimization
  • Memory leaks and debugging
  • Production Node.js systems

👉 Explore the program and get tickets:
https://nodeconf.eu/

💚 Get involved with the Node.js community this week

Several public Node.js project meetings are happening this week, and anyone in the community can join:

  • Node.js Next 10 Years — September 2
  • Diagnostics WG — September 3
  • Build WG — September 3
  • Node-API team meeting — September 4

A great way to follow what’s happening inside the project, connect with contributors, and get involved in the Node.js community.

👉 See upcoming Node.js meetings:
https://nodejs.org/en/about/get-involved/events


16.png

🤖 AI Corner

AI coding agents are becoming collaborative workflows

GitHub’s latest Copilot updates show where AI-assisted development is heading: beyond a single developer chatting with an agent.

Recent additions include shared agent sessions from Slack and Microsoft Teams, the ability to continue Copilot or Claude agent sessions inside VS Code, organization-wide custom agents, and even an experimental /rubber-duck command that asks a complementary model for a second opinion.

The interesting shift: agents are becoming part of the development workflow itself — across IDEs, repositories, reviews, and team conversations.

👉 Explore GitHub Copilot’s latest updates

💡 AI Tip of the Week

Ask another agent to challenge the first one

Don’t only ask your coding agent to generate a solution.

Before accepting a meaningful change, try asking a second model or agent to review it specifically for:

  • incorrect assumptions
  • edge cases
  • security issues
  • unnecessary complexity
  • regressions

A useful prompt can be as simple as:

“Review this solution as a skeptical senior engineer. Don’t rewrite it yet — identify assumptions, risks, and edge cases the original implementation may have missed.”

This “second opinion” pattern is becoming increasingly common in agentic development workflows — and GitHub is even experimenting with it directly through Copilot’s /rubber-duck command.

📚 Recommended Reading

Automating repetitive work at OpenAI with Codex

A practical look at how an OpenAI engineer uses Codex to handle recurring engineering work while keeping humans involved in planning, approvals, and consequential decisions.

Instead of creating one-off automation for every repeated task, the workflow captures context, commands, results, decisions, and lessons learned so future agent runs can build on previous work.

It’s a particularly interesting example of an important agentic pattern: don’t just automate the task — preserve the context generated while solving it.

👉 Read “Automating repetitive work at OpenAI with Codex”


17.png

🚀 Node.js Upgrade Program

Free Expert Help for Your Next Node.js Upgrade

Still running an End-of-Life version of Node.js?

The Node.js Upgrade Program, developed in partnership with the OpenJS Foundation, helps organizations migrate to supported LTS releases with free expert guidance from the Node.js ecosystem.

You can follow the step-by-step upgrade process yourself using the program's resources, or request assistance from the Upgrade Program team to help plan and execute your migration.

The program is designed to help organizations:

  • ✅ Upgrade from End-of-Life Node.js versions
  • ✅ Reduce security and compliance risks
  • ✅ Plan migrations with confidence
  • ✅ Modernize production applications

Participation is completely free for organizations.

🔗 Learn more and get started:
https://nodesource.com/products/nodejs-upgrade


18.png

⚡ Stay Connected

The Node.js ecosystem never stands still—and neither do we.

Subscribe to stay up to date with future editions featuring the latest Node.js releases, AI-powered developer tools, observability, security, and community news.

Have questions, feedback, or ideas for a future edition? We'd love to hear from you.

📩 https://nodesource.com/pages/contact-us.html
📧 teffcode@nodesource.com

See you next month! 👋

The NodeSource platform offers a high-definition view of the performance, security and behavior of Node.js applications and functions.

Start for Free