From 0b29611feec65ef3445ca82a16917444585e3b6e Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Nov 13 2022 13:13:55 +0000 Subject: 838 - Node.js 18 --- diff --git a/modules/release-notes/pages/developers/Development_Web.adoc b/modules/release-notes/pages/developers/Development_Web.adoc index 7b8324d..60a9f3e 100644 --- a/modules/release-notes/pages/developers/Development_Web.adoc +++ b/modules/release-notes/pages/developers/Development_Web.adoc @@ -3,3 +3,18 @@ include::{partialsdir}/entities.adoc[] [[sect-web-development]] = Web Development + +== Node.js 18 + +Fedora 37 ships with the latest LTS version of Node.js JavaScript server-side engine, 18.x. The 16.x, and 14.x interpreters will remain available as non-default module streams. + +If your applications are not yet ready for this newer version, you can revert to the 16.x series by running the following commands: + +[source,bash] +---- +dnf remove nodejs +dnf module reset nodejs +dnf module install nodejs:16 +---- + +For more detailed information about Node.js 18, see the link:https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V18.md[upstream Node.js 18 ChangeLog].